mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 19:54:21 +01:00
Add missing sizeof in trainer_see
This commit is contained in:
parent
4941e2602a
commit
e70577d59b
@ -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)
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user