diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-10-25 21:55:01 -0400 |
---|---|---|
committer | GriffinR <griffin.richards@comcast.net> | 2019-10-31 03:25:56 -0400 |
commit | e01ec84837c018bd3bfde58d7987d32733cc8bd6 (patch) | |
tree | d77ea1ff907db132b393b02e089a365d00907ebe /src/pokemon_summary_screen.c | |
parent | 6db014cc32d28a64499af7d605be3a062560d5e0 (diff) |
Document party_menu second pass
Diffstat (limited to 'src/pokemon_summary_screen.c')
-rw-r--r-- | src/pokemon_summary_screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokemon_summary_screen.c b/src/pokemon_summary_screen.c index 5ab13b09e..41c48d008 100644 --- a/src/pokemon_summary_screen.c +++ b/src/pokemon_summary_screen.c @@ -2575,9 +2575,9 @@ static void DrawPokerusCuredSymbol(struct Pokemon *mon) // This checks if the mo static void SetDexNumberColor(bool8 isMonShiny) { if (!isMonShiny) - sub_8199C30(3, 1, 4, 8, 8, 0); + SetBgTilemapPalette(3, 1, 4, 8, 8, 0); else - sub_8199C30(3, 1, 4, 8, 8, 5); + SetBgTilemapPalette(3, 1, 4, 8, 8, 5); schedule_bg_copy_tilemap_to_vram(3); } |