fixed red coins display wrong glyph

This commit is contained in:
U-DESKTOP-F0TJMO2\Utilisateur 2023-11-21 01:02:18 +01:00 committed by Agent X
parent ea487fe342
commit 9198616ca2

View file

@ -2452,7 +2452,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);