summaryrefslogtreecommitdiff
path: root/src/KingSystem/Map/mapPlacementMgr.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2021-07-07 14:10:14 +0200
committerLéo Lam <leo@leolam.fr>2021-07-07 14:34:02 +0200
commit48e70b92bfb82cd0dad6d4f795c36f491be0f2eb (patch)
treee624b6bc646543147cbfaf391b8ee468e2e80ef1 /src/KingSystem/Map/mapPlacementMgr.cpp
parent1b6c549a38de8fb27d2eb6584888feed972570a2 (diff)
ksys/map: Fix more matching or equivalency issues
Diffstat (limited to 'src/KingSystem/Map/mapPlacementMgr.cpp')
-rw-r--r--src/KingSystem/Map/mapPlacementMgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KingSystem/Map/mapPlacementMgr.cpp b/src/KingSystem/Map/mapPlacementMgr.cpp
index 807dc199..931e6531 100644
--- a/src/KingSystem/Map/mapPlacementMgr.cpp
+++ b/src/KingSystem/Map/mapPlacementMgr.cpp
@@ -94,7 +94,7 @@ void PlacementMgr::printDebugInfo() {
mMassMemoryUsage / 1024, mClusteredMemoryUsage / 1024);
// Dynamic heap remaining:%dk
sead::FormatFixedSafeString<128> s4("動的ヒープ残り:%dk",
- int(mDynamicHeap->getFreeSize()) / 1024);
+ u32(mDynamicHeap->getFreeSize() / 1024));
}
void PlacementMgr::incrementCounter() {