summaryrefslogtreecommitdiff
path: root/src/map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.cpp')
-rw-r--r--src/map.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/map.cpp b/src/map.cpp
index 29d9a6821..087a16a55 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -727,10 +727,8 @@ const std::string Map::getName() const
const std::string Map::getFilename() const
{
std::string fileName = getProperty("_filename");
- size_t lastSlash = fileName.rfind("/") + 1;
- size_t lastDot = fileName.rfind(".");
-
- return fileName.substr(lastSlash, lastDot - lastSlash);
+ const size_t lastSlash = fileName.rfind("/") + 1;
+ return fileName.substr(lastSlash, fileName.rfind(".") - lastSlash);
}
Position Map::checkNodeOffsets(int radius, const unsigned char walkMask,