diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-08-01 20:25:00 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-08-01 20:25:00 +0000 |
commit | 2c37441be01d58e1714a604645d329575ae95f82 (patch) | |
tree | 582da8190d178ab96ffadc5d63e0c1f5d16bcb73 /src/main.cpp | |
parent | 6e6c1d4b25e7c833b68da0a2aba6861879e08881 (diff) | |
download | manaserv-2c37441be01d58e1714a604645d329575ae95f82.tar.gz manaserv-2c37441be01d58e1714a604645d329575ae95f82.tar.bz2 manaserv-2c37441be01d58e1714a604645d329575ae95f82.tar.xz manaserv-2c37441be01d58e1714a604645d329575ae95f82.zip |
Some messing about towards making cleaner code.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/main.cpp b/src/main.cpp index 8f418ce4..28afc187 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -107,12 +107,11 @@ State *gameState; */ void initialize() { - -/** - * If the path values aren't defined, we set the default - * depending on the platform. - */ -// The config path + /* + * If the path values aren't defined, we set the default + * depending on the platform. + */ + // The config path #if defined CONFIG_FILE std::string configPath = CONFIG_FILE; #else @@ -127,7 +126,7 @@ void initialize() #endif // defined CONFIG_FILE -// The log path + // The log path #if defined LOG_FILE std::string logPath = LOG_FILE; #else |