diff options
Diffstat (limited to 'src/decompress.c')
-rw-r--r-- | src/decompress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decompress.c b/src/decompress.c index c0158ada8..bd613ec6a 100644 --- a/src/decompress.c +++ b/src/decompress.c @@ -71,8 +71,8 @@ void HandleLoadSpecialPokePic(const struct CompressedSpriteSheet *src, u32 coord { u32 frontOrBack; - // gUnknown_081FAF4C appears to be a list of pointers to locations to store poke pics for back and front pic here. the first and third pointers are used for back while the others are used for front. - if (dest == gUnknown_081FAF4C[0] || dest == gUnknown_081FAF4C[2]) + // gMonSpriteGfx_Sprite_ptr appears to be a list of pointers to locations to store poke pics for back and front pic here. the first and third pointers are used for back while the others are used for front. + if (dest == gMonSpriteGfx_Sprite_ptr[0] || dest == gMonSpriteGfx_Sprite_ptr[2]) frontOrBack = 0; // backPic else frontOrBack = 1; // frontPic |