Skip to content

Commit

Permalink
Fix interpolation for Kaleido (HarbourMasters#4391)
Browse files Browse the repository at this point in the history
  • Loading branch information
Archez authored Oct 10, 2024
1 parent 70a2141 commit 7192783
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion soh/src/code/z_view.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down

0 comments on commit 7192783

Please sign in to comment.