diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-03-11 00:53:39 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-03-11 00:54:51 +0200 |
commit | b485fac33ef961fb5725f3ae34520ee3b2f0339b (patch) | |
tree | 0acb22e66ae9c8a5ff89e1ab29c90ef86e43fc57 /src/main.cpp | |
parent | 98404ad8ea48a7bb77034a6a2aa1bc7d4be4ddb4 (diff) | |
download | minetest-b485fac33ef961fb5725f3ae34520ee3b2f0339b.tar.gz minetest-b485fac33ef961fb5725f3ae34520ee3b2f0339b.tar.bz2 minetest-b485fac33ef961fb5725f3ae34520ee3b2f0339b.zip |
Fix configuration file behaviour
- Do not rewrite if nothing needs to be changed
- Update at program exit, in addition to updating when continuing from main menu to game
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 10e01be2a..83bca7c44 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1708,6 +1708,10 @@ int main(int argc, char *argv[]) #endif // !SERVER + // Update configuration file + if(configpath != "") + g_settings->updateConfigFile(configpath.c_str()); + END_DEBUG_EXCEPTION_HANDLER(errorstream) debugstreams_deinit(); |