Add missing sizeof in trainer_see
This commit is contained in:
parent
4941e2602a
commit
e70577d59b
1 changed files with 3 additions and 3 deletions
|
@ -131,11 +131,11 @@ static const struct SpriteFrameImage sSpriteImageTable_ExclamationQuestionMark[]
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
.data = sEmotion_ExclamationMarkGfx,
|
.data = sEmotion_ExclamationMarkGfx,
|
||||||
.size = 0x80
|
.size = sizeof(sEmotion_ExclamationMarkGfx)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.data = sEmotion_QuestionMarkGfx,
|
.data = sEmotion_QuestionMarkGfx,
|
||||||
.size = 0x80
|
.size = sizeof(sEmotion_QuestionMarkGfx)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -143,7 +143,7 @@ static const struct SpriteFrameImage sSpriteImageTable_HeartIcon[] =
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
.data = sEmotion_HeartGfx,
|
.data = sEmotion_HeartGfx,
|
||||||
.size = 0x80
|
.size = sizeof(sEmotion_HeartGfx)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue