fixed red coins display wrong glyph
This commit is contained in:
parent
2fe3dd8005
commit
a0e0493e45
|
@ -2463,7 +2463,7 @@ void render_pause_red_coins(void) {
|
||||||
if (collected >= 100) red_coins_print_glyph(&x, (collected / 100) % 10, 12);
|
if (collected >= 100) red_coins_print_glyph(&x, (collected / 100) % 10, 12);
|
||||||
if (collected >= 10) red_coins_print_glyph(&x, (collected / 10) % 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, 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 >= 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);
|
if (gCurrentArea->numRedCoins >= 10) red_coins_print_glyph(&x, (gCurrentArea->numRedCoins / 10) % 10, 12);
|
||||||
red_coins_print_glyph(&x, gCurrentArea->numRedCoins % 10, 15);
|
red_coins_print_glyph(&x, gCurrentArea->numRedCoins % 10, 15);
|
||||||
|
|
Loading…
Reference in New Issue