Minecraft.World: fix a gcc moment

This commit is contained in:
ThePixelMoon 2026-03-05 07:34:16 +02:00
parent d15ff8142c
commit de71d80b57

View file

@ -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);
}