fixed red coins display wrong glyph

This commit is contained in:
U-DESKTOP-F0TJMO2\Utilisateur 2023-11-21 01:02:18 +01:00
parent 2fe3dd8005
commit a0e0493e45
1 changed files with 1 additions and 1 deletions

View File

@ -2463,7 +2463,7 @@ void render_pause_red_coins(void) {
if (collected >= 100) red_coins_print_glyph(&x, (collected / 100) % 10, 12);
if (collected >= 10) red_coins_print_glyph(&x, (collected / 10) % 10, 12);
red_coins_print_glyph(&x, collected % 10, 15);
red_coins_print_glyph(&x, GLYPH_MULTIPLY - 1, 15);
red_coins_print_glyph(&x, GLYPH_SLASH, 15);
if (gCurrentArea->numRedCoins >= 100) red_coins_print_glyph(&x, (gCurrentArea->numRedCoins / 100) % 10, 12);
if (gCurrentArea->numRedCoins >= 10) red_coins_print_glyph(&x, (gCurrentArea->numRedCoins / 10) % 10, 12);
red_coins_print_glyph(&x, gCurrentArea->numRedCoins % 10, 15);