mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-20 09:57:10 +00:00
Minecraft.World: fix a gcc moment
This commit is contained in:
parent
d15ff8142c
commit
de71d80b57
|
|
@ -287,7 +287,11 @@ LevelData *DirectoryLevelStorage::prepareLevel()
|
||||||
#ifdef _WINDOWS64
|
#ifdef _WINDOWS64
|
||||||
app.DebugPrintf(" -- %d\n", playerUid);
|
app.DebugPrintf(" -- %d\n", playerUid);
|
||||||
#else
|
#else
|
||||||
|
#ifdef __linux__
|
||||||
|
app.DebugPrintf(" -- %ls\n", playerUid);
|
||||||
|
#else
|
||||||
app.DebugPrintf(" -- %ls\n", playerUid.toString().c_str());
|
app.DebugPrintf(" -- %ls\n", playerUid.toString().c_str());
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
m_playerMappings[playerUid].readMappings(&dis);
|
m_playerMappings[playerUid].readMappings(&dis);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue