slackbuilds_ponce/games/brainparty/patches/brainparty-0.5-savegame.patch

28 lines
746 B
Diff
Raw Normal View History

2010-04-17 03:50:02 +02:00
--- a/BPGame.cpp 2010-03-11 00:15:34.000000000 +0000
+++ b/BPGame.cpp 2010-04-02 04:17:02.640735675 +0100
@@ -1294,8 +1294,10 @@ void BPGame::LoadSettings() {
Secret1 = Secret2 = Secret3 = Secret4 = false;
NumUnlockedGames = 0;
+ string file = string("/.brainparty");
+ file.insert(0, getenv("HOME"));
ifstream ifs;
- ifs.open(".brainparty");
+ ifs.open(file.c_str());
FirstRun = false;
@@ -1425,8 +1428,11 @@ void BPGame::LoadSettings() {
}
void BPGame::SaveSettings() {
+ string file = string("/.brainparty");
+ file.insert(0, getenv("HOME"));
+
ofstream savefile;
- savefile.open(".brainparty");
+ savefile.open(file.c_str());
savefile << EnableSound << endl;
savefile << EnableMusic << endl;
savefile << endl;