diff options
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/console.cc | 4 | ||||
-rw-r--r-- | src/client/keyboard.cc | 4 | ||||
-rw-r--r-- | src/client/video.cc | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/client/console.cc b/src/client/console.cc index ddcaa32..60e2a7f 100644 --- a/src/client/console.cc +++ b/src/client/console.cc @@ -190,7 +190,7 @@ void Console::save_history() if (history.size() <= 1) return; - std::string filename(filesystem::writedir); + std::string filename(filesystem::writedir()); filename.append("history.txt"); std::ofstream ofs(filename.c_str()); @@ -211,7 +211,7 @@ void Console::save_history() void Console::load_history() { - std::string filename(filesystem::writedir); + std::string filename(filesystem::writedir()); filename.append("history.txt"); std::ifstream ifs(filename.c_str(), std::ifstream::in); diff --git a/src/client/keyboard.cc b/src/client/keyboard.cc index 420d1bb..1ebba12 100644 --- a/src/client/keyboard.cc +++ b/src/client/keyboard.cc @@ -229,7 +229,7 @@ Keyboard::~Keyboard() void Keyboard::save_binds() { - std::string filename(filesystem::writedir); + std::string filename(filesystem::writedir()); filename.append("binds.cfg"); std::ofstream ofs(filename.c_str()); @@ -269,7 +269,7 @@ void Keyboard::save_binds() void Keyboard::load_binds() { - std::string filename(filesystem::writedir); + std::string filename(filesystem::writedir()); filename.append("binds.cfg"); std::ifstream ifs(filename.c_str(), std::ifstream::in); diff --git a/src/client/video.cc b/src/client/video.cc index 56514a9..ceea25d 100644 --- a/src/client/video.cc +++ b/src/client/video.cc @@ -158,7 +158,7 @@ void screenshot() std::string filename; // make sure the screenshots folder exists - filename.assign(filesystem::writedir); + filename.assign(filesystem::writedir()); filename.append("screenshots/"); sys::mkdir(filename); @@ -174,7 +174,7 @@ void screenshot() shortname.insert(0, "screenshots/osirion"); shortname.append(".tga"); - filename.assign(filesystem::writedir); + filename.assign(filesystem::writedir()); filename.append(shortname); FILE *handle = fopen(filename.c_str(), "r"); |