Fix interpolation for Kaleido (#4391)

This commit is contained in:
Archez 2024-10-10 19:38:38 -04:00 committed by GitHub
parent 70a2141351
commit 7192783451
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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(); FrameInterpolation_DontInterpolateCamera();
} }