diff options
author | Sebastian Gabl <sebastian.gabl@gmx.at> | 2020-01-15 14:48:17 +0100 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2020-01-15 08:10:20 -0600 |
commit | 5fff2f2234755af166612a4829d178408eb740bb (patch) | |
tree | 28e4f5a53c99f46b17270b53ecce0666a14e6be1 /src/pokedex.c | |
parent | 69833181d98e6cba45d9d331899c924c0f6c3e17 (diff) |
Use SHINY_ODDS macro where intended
The 3 locations where SHINY_ODDS was added generate mon sprites for
display in the dex, at game start and on starter choice.
The arguments are intended for otId but in this case they are set to the
same value as SHINY_ODDS to prevent the pictures created from using the
shiny palette.
Diffstat (limited to 'src/pokedex.c')
-rw-r--r-- | src/pokedex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pokedex.c b/src/pokedex.c index 78c204d2d..bd766fbf7 100644 --- a/src/pokedex.c +++ b/src/pokedex.c @@ -4674,7 +4674,7 @@ u32 sub_80C0E68(u16 a) u16 CreateMonSpriteFromNationalDexNumber(u16 nationalNum, s16 x, s16 y, u16 paletteSlot) { nationalNum = NationalPokedexNumToSpecies(nationalNum); - return CreateMonPicSprite_HandleDeoxys(nationalNum, 8, sub_80C0E68(nationalNum), TRUE, x, y, paletteSlot, 0xFFFF); + return CreateMonPicSprite_HandleDeoxys(nationalNum, SHINY_ODDS, sub_80C0E68(nationalNum), TRUE, x, y, paletteSlot, 0xFFFF); } u16 sub_80C0EF8(u16 species, s16 x, s16 y, s8 paletteSlot) |