summaryrefslogtreecommitdiff
path: root/src/resources/map
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/map')
-rw-r--r--src/resources/map/map.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resources/map/map.cpp b/src/resources/map/map.cpp
index b7e5d1fca..c24e3752e 100644
--- a/src/resources/map/map.cpp
+++ b/src/resources/map/map.cpp
@@ -1135,8 +1135,8 @@ void Map::addExtraLayer() restrict2
BLOCK_END("Map::addExtraLayer")
return;
}
- const std::string mapFileName = getUserMapDirectory().append(
- "/extralayer.txt");
+ const std::string mapFileName = pathJoin(getUserMapDirectory(),
+ "extralayer.txt");
logger->log("loading extra layer: " + mapFileName);
struct stat statbuf;
if (!stat(mapFileName.c_str(), &statbuf) && S_ISREG(statbuf.st_mode))
@@ -1208,8 +1208,8 @@ void Map::saveExtraLayer() const restrict2
logger->log1("No special layer");
return;
}
- const std::string mapFileName = getUserMapDirectory().append(
- "/extralayer.txt");
+ const std::string mapFileName = pathJoin(getUserMapDirectory(),
+ "extralayer.txt");
logger->log("saving extra layer: " + mapFileName);
if (mkdir_r(getUserMapDirectory().c_str()))