From e70577d59badd1257571123d2faf51d9b84d75f5 Mon Sep 17 00:00:00 2001 From: GriffinR Date: Sun, 20 Aug 2023 17:22:29 -0400 Subject: [PATCH] Add missing sizeof in trainer_see --- src/trainer_see.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/trainer_see.c b/src/trainer_see.c index 97c2bc95e7..dd4acc7f36 100644 --- a/src/trainer_see.c +++ b/src/trainer_see.c @@ -131,11 +131,11 @@ static const struct SpriteFrameImage sSpriteImageTable_ExclamationQuestionMark[] { { .data = sEmotion_ExclamationMarkGfx, - .size = 0x80 + .size = sizeof(sEmotion_ExclamationMarkGfx) }, { .data = sEmotion_QuestionMarkGfx, - .size = 0x80 + .size = sizeof(sEmotion_QuestionMarkGfx) } }; @@ -143,7 +143,7 @@ static const struct SpriteFrameImage sSpriteImageTable_HeartIcon[] = { { .data = sEmotion_HeartGfx, - .size = 0x80 + .size = sizeof(sEmotion_HeartGfx) } };