From 3eac222192ab42764b1101b6b9e41c6ecae26f2f Mon Sep 17 00:00:00 2001 From: SiliconA-Z Date: Sat, 21 Mar 2026 18:41:02 -0400 Subject: [PATCH] Fix matching (#734) --- src/dynamic_placeholder_text_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dynamic_placeholder_text_util.c b/src/dynamic_placeholder_text_util.c index 63f49748b..48b40d0cd 100644 --- a/src/dynamic_placeholder_text_util.c +++ b/src/dynamic_placeholder_text_util.c @@ -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; }