From 62ab169fcb3ae290c02dbde740c00d48da3398a5 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Sun, 10 Mar 2024 16:46:30 -0400 Subject: [PATCH] Make vanilla red coin display work with Forced 4:3 --- src/game/ingame_menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/ingame_menu.c b/src/game/ingame_menu.c index 69943143..44beff50 100644 --- a/src/game/ingame_menu.c +++ b/src/game/ingame_menu.c @@ -2445,7 +2445,7 @@ void render_pause_red_coins(void) { if (gCurrentArea->numRedCoins == 8) { u8 collected = gCurrentArea->numRedCoins - count_objects_with_behavior(bhvRedCoin); for (s32 x = 0; x < collected; x++) { - print_animated_red_coin(GFX_DIMENSIONS_FROM_RIGHT_EDGE(30) - x * 20, 16); + print_animated_red_coin(gfx_dimensions_rect_from_right_edge(30) - x * 20, 16); } return; }