Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix interpolation for Kaleido #4391

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix interpolation for Kaleido
  • Loading branch information
Archez committed Oct 10, 2024
commit 4fd4a0d6d9dd0f183fc311157a734fa977b526f5
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
Loading