From 7b6efd3540b0cf672a4ca408a98873228352cfa7 Mon Sep 17 00:00:00 2001 From: Sonic Dreamcaster Date: Wed, 25 Feb 2026 02:39:23 -0300 Subject: [PATCH] use GameEngine_GetAspectRatio --- src/overlays/ovl_i2/fox_sx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/overlays/ovl_i2/fox_sx.c b/src/overlays/ovl_i2/fox_sx.c index 4d376b3d..3934200a 100644 --- a/src/overlays/ovl_i2/fox_sx.c +++ b/src/overlays/ovl_i2/fox_sx.c @@ -1677,7 +1677,7 @@ void SectorX_LevelComplete_SetupTeam(ActorCutscene* this, s32 teamIdx) { srcA.z = D_i2_80195730[teamIdx]; // @port: Hide Falco's spawn behind Fox's Arwing so he doesn't look like he came out of nowhere on widescreen. - if (teamIdx == 0) { + if ((GameEngine_GetAspectRatio() > 1.66f) && (teamIdx == 0)) { srcA.y -= 100.0f; srcA.z += 1000.0f; }