mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
27 lines
746 B
Diff
27 lines
746 B
Diff
--- 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;
|