Core/Misc: Better description for a log

(cherry picked from commit 54d4769d4b)

# Conflicts:
#	src/server/game/Maps/Map.cpp
This commit is contained in:
Aokromes
2016-06-22 14:24:11 +02:00
committed by joschiwald
parent a497181172
commit 10bb5fa86e

View File

@@ -95,7 +95,7 @@ bool Map::ExistMap(uint32 mapid, int gx, int gy)
if (fread(&header, sizeof(header), 1, file) == 1)
{
if (header.mapMagic.asUInt != MapMagic.asUInt || header.versionMagic.asUInt != MapVersionMagic.asUInt)
TC_LOG_ERROR("maps", "Map file '%s' is from an incompatible map version (%.*s %.*s), %.*s %.*s is expected. Please recreate using the mapextractor.",
TC_LOG_ERROR("maps", "Map file '%s' is from an incompatible map version (%.*s %.*s), %.*s %.*s is expected. Please pull your source, recompile tools and recreate using the updated mapextractor.",
fileName.c_str(), 4, header.mapMagic.asChar, 4, header.versionMagic.asChar, 4, MapMagic.asChar, 4, MapVersionMagic.asChar);
else
ret = true;