mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-25 05:25:14 +00:00
fixed red coins display wrong glyph
This commit is contained in:
parent
ea487fe342
commit
9198616ca2
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue