mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-16 12:42:54 +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
|
||||
app.DebugPrintf(" -- %d\n", playerUid);
|
||||
#else
|
||||
#ifdef __linux__
|
||||
app.DebugPrintf(" -- %ls\n", playerUid);
|
||||
#else
|
||||
app.DebugPrintf(" -- %ls\n", playerUid.toString().c_str());
|
||||
#endif
|
||||
#endif
|
||||
m_playerMappings[playerUid].readMappings(&dis);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue