2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 00:27:42 +00:00

CMapArea: Resolve sign conversion warning in Draw()

Resolves a trivial sign-conversion warning.
This commit is contained in:
Lioncash
2020-03-13 16:07:39 -04:00
parent df4487bae8
commit 4601abf5df
3 changed files with 5 additions and 4 deletions

View File

@@ -85,7 +85,7 @@ void CMapUniverse::Draw(const CMapUniverseDrawParms& parms, const zeus::CVector3
int lastWldIdx = -1;
int lastHexIdx = -1;
int instIdx = 0;
size_t instIdx = 0;
for (const CMapObjectSortInfo& info : sortInfos) {
const CMapWorldData& mwData = x10_worldDatas[info.GetWorldIndex()];
zeus::CColor surfColor = info.GetSurfaceColor();