mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-10 04:02:42 +00:00
Minecraft.World: fix another gcc moment
This commit is contained in:
@@ -288,7 +288,7 @@ LevelData *DirectoryLevelStorage::prepareLevel()
|
||||
app.DebugPrintf(" -- %d\n", playerUid);
|
||||
#else
|
||||
#ifdef __linux__
|
||||
app.DebugPrintf(" -- %ls\n", playerUid);
|
||||
app.DebugPrintf(" -- %d\n", playerUid);
|
||||
#else
|
||||
app.DebugPrintf(" -- %ls\n", playerUid.toString().c_str());
|
||||
#endif
|
||||
@@ -695,7 +695,11 @@ void DirectoryLevelStorage::saveMapIdLookup()
|
||||
#ifdef _WINDOWS64
|
||||
app.DebugPrintf(" -- %d\n", it->first);
|
||||
#else
|
||||
#ifdef __linux__
|
||||
app.DebugPrintf(" -- %d\n", it->first);
|
||||
#else
|
||||
app.DebugPrintf(" -- %ls\n", it->first.toString().c_str());
|
||||
#endif
|
||||
#endif
|
||||
dos.writePlayerUID(it->first);
|
||||
it->second.writeMappings(&dos);
|
||||
|
||||
Reference in New Issue
Block a user