From 7192783451441789b28da63479058d2feca6aafb Mon Sep 17 00:00:00 2001 From: Archez Date: Thu, 10 Oct 2024 19:38:38 -0400 Subject: [PATCH] Fix interpolation for Kaleido (#4391) --- soh/src/code/z_view.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/soh/src/code/z_view.c b/soh/src/code/z_view.c index c6235c923..2c18466f2 100644 --- a/soh/src/code/z_view.c +++ b/soh/src/code/z_view.c @@ -398,7 +398,8 @@ s32 func_800AAA9C(View* view) { } } - if (dont_interpolate) { + // Ignore camera heuristics when paused as the camera moves a lot in Kaleido, allowing it to be interpolate + if (dont_interpolate && R_PAUSE_MENU_MODE == 0) { FrameInterpolation_DontInterpolateCamera(); }