Update Move Category icons (#5080)

Update Category Icons to be more accurate to Gen 5
This commit is contained in:
kittenchilly 2024-09-09 02:52:48 -05:00 committed by GitHub
parent 2f21073555
commit ab279d9f8c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 303 B

View file

@ -1144,7 +1144,7 @@ static const u16 sMarkings_Pal[] = INCBIN_U16("graphics/summary_screen/markings.
static u8 ShowCategoryIcon(u32 category) static u8 ShowCategoryIcon(u32 category)
{ {
if (sMonSummaryScreen->categoryIconSpriteId == 0xFF) if (sMonSummaryScreen->categoryIconSpriteId == 0xFF)
sMonSummaryScreen->categoryIconSpriteId = CreateSprite(&gSpriteTemplate_CategoryIcons, 48, 129, 0); sMonSummaryScreen->categoryIconSpriteId = CreateSprite(&gSpriteTemplate_CategoryIcons, 48, 128, 0);
gSprites[sMonSummaryScreen->categoryIconSpriteId].invisible = FALSE; gSprites[sMonSummaryScreen->categoryIconSpriteId].invisible = FALSE;
StartSpriteAnim(&gSprites[sMonSummaryScreen->categoryIconSpriteId], category); StartSpriteAnim(&gSprites[sMonSummaryScreen->categoryIconSpriteId], category);