Fix water map loading case sensitivity issues when using lowercase water maps like the rest of the map code

This commit is contained in:
Akkadius
2019-12-28 22:45:35 -06:00
parent 0643df3dbe
commit 4b6a1242f5
4 changed files with 67 additions and 22 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ public:
#ifdef USE_MAP_MMFS
bool Load(std::string filename, bool force_mmf_overwrite = false);
#else
bool Load(std::string filename);
bool Load(const std::string& filename);
#endif
static Map *LoadMapFile(std::string file);