From b176a668f1674e461203ae73d39228d1ce3a9c76 Mon Sep 17 00:00:00 2001 From: Reonu Date: Thu, 23 Jul 2026 18:47:16 +0100 Subject: [PATCH] Fixed camera inversion ice key SNS cutscene issue (#304) --- patches/camera_and_axis_inversion_patches.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/camera_and_axis_inversion_patches.c b/patches/camera_and_axis_inversion_patches.c index de6353f..30f0af3 100644 --- a/patches/camera_and_axis_inversion_patches.c +++ b/patches/camera_and_axis_inversion_patches.c @@ -217,7 +217,7 @@ s32 recomp_get_first_person_inverted_x() { s32 recomp_get_first_person_inverted_y() { s32 inverted_x, inverted_y; if (recomp_in_demo_playback_game_mode()) { - inverted_y = FALSE; + inverted_y = TRUE; } else { recomp_get_first_person_inverted_axes(&inverted_x, &inverted_y); }