diff options
Diffstat (limited to 'src/statuseffect.cpp')
-rw-r--r-- | src/statuseffect.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/statuseffect.cpp b/src/statuseffect.cpp index 810c65aca..0855d2c9b 100644 --- a/src/statuseffect.cpp +++ b/src/statuseffect.cpp @@ -33,7 +33,7 @@ #include "debug.h" -#define STATUS_EFFECTS_FILE "status-effects.xml" +static const char *STATUS_EFFECTS_FILE = "status-effects.xml"; static void unloadMap(std::map<int, StatusEffect *> &map); @@ -132,8 +132,7 @@ void StatusEffect::load() if (!rootNode || !xmlNameEqual(rootNode, "status-effects")) { - logger->log1("Error loading status effects file: " - STATUS_EFFECTS_FILE); + logger->log1("Error loading status effects file"); return; } |