diff options
Diffstat (limited to 'src/engine/fox_hud.c')
| -rw-r--r-- | src/engine/fox_hud.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/fox_hud.c b/src/engine/fox_hud.c index e8cd1c30..051ec0b6 100644 --- a/src/engine/fox_hud.c +++ b/src/engine/fox_hud.c @@ -2819,9 +2819,9 @@ void HUD_EdgeArrows_Draw(s32 idx, bool arg1) { f32 xPos = D_800D1EF8[idx]; if (xPos < 0.0f) { - xPos = xPos * OTRGetAspectRatio() + 1; + xPos = xPos * OTRGetHUDAspectRatio() + 1; } else if (xPos > 0.0f) { - xPos = xPos * OTRGetAspectRatio() - 1; + xPos = xPos * OTRGetHUDAspectRatio() - 1; } if (arg1) { |
