summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2020-07-25 14:13:27 +0200
committereray orçunus <erayorcunus@gmail.com>2020-07-25 14:18:15 +0200
commit199d57b16c80e51ace23e1640a1c92c3ebca0314 (patch)
tree7e1dcfcca697c11c4272b142f4f2abef3b035352 /src/core
parentfixed hanim for 64 bit (diff)
downloadre3-199d57b16c80e51ace23e1640a1c92c3ebca0314.tar
re3-199d57b16c80e51ace23e1640a1c92c3ebca0314.tar.gz
re3-199d57b16c80e51ace23e1640a1c92c3ebca0314.tar.bz2
re3-199d57b16c80e51ace23e1640a1c92c3ebca0314.tar.lz
re3-199d57b16c80e51ace23e1640a1c92c3ebca0314.tar.xz
re3-199d57b16c80e51ace23e1640a1c92c3ebca0314.tar.zst
re3-199d57b16c80e51ace23e1640a1c92c3ebca0314.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/Game.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/Game.cpp b/src/core/Game.cpp
index f6275133..0d839dfa 100644
--- a/src/core/Game.cpp
+++ b/src/core/Game.cpp
@@ -365,7 +365,7 @@ bool CGame::Initialise(const char* datFile)
CStreaming::LoadInitialPeds();
CStreaming::RequestBigBuildings(LEVEL_GENERIC);
CStreaming::LoadAllRequestedModels(false);
- printf("Streaming uses %dK of its memory", CStreaming::ms_memoryUsed / 1024);
+ printf("Streaming uses %zuK of its memory", CStreaming::ms_memoryUsed / 1024); // original modifier was %d
LoadingScreen("Loading the Game", "Load animations", GetRandomSplashScreen());
CAnimManager::LoadAnimFiles();
CPed::Initialise();