diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/debugwindow.cpp | 2 | ||||
-rw-r--r-- | src/gui/killstats.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/debugwindow.cpp b/src/gui/debugwindow.cpp index 7707c0935..1b436a617 100644 --- a/src/gui/debugwindow.cpp +++ b/src/gui/debugwindow.cpp @@ -184,7 +184,7 @@ void DebugWindow::logic() mMinimapLabel->setCaption(strprintf("%s %s", _("Minimap:"), map->getProperty("minimap").c_str())); mMapLabel->setCaption(strprintf("%s %s", _("Map:"), - map->getProperty("_filename").c_str())); + map->getProperty("_realfilename").c_str())); if (mUpdateTime != cur_time) diff --git a/src/gui/killstats.cpp b/src/gui/killstats.cpp index 8ce38c719..9bbbc8549 100644 --- a/src/gui/killstats.cpp +++ b/src/gui/killstats.cpp @@ -385,8 +385,8 @@ void KillStats::validateJacko() Map *currentMap = Game::instance()->getCurrentMap(); if (currentMap) { - if (currentMap->getProperty("_filename") == "018-1" - || currentMap->getProperty("_filename") == "maps/018-1.tmx") + if (currentMap->getProperty("_realfilename") == "018-1" + || currentMap->getProperty("_realfilename") == "maps/018-1.tmx") { if (player_node->getTileX() >= 167 && player_node->getTileX() <= 175 |