Fix matching (#734)

This commit is contained in:
SiliconA-Z
2026-03-21 18:41:02 -04:00
committed by GitHub
parent 891e203ded
commit 3eac222192
+2 -2
View File
@@ -89,8 +89,8 @@ static const u8 sTextColorTable[] =
void DynamicPlaceholderTextUtil_Reset(void)
{
s32 i;
for (i = 0; i < NELEMS(sStringPointers); i++)
int i;
for (i = 0; i < (int)NELEMS(sStringPointers); i++)
sStringPointers[i] = NULL;
}