From b347a582b518befc8b70cfed1782e28c7eba569f Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Mon, 1 Jan 2024 19:47:25 -0500 Subject: [PATCH] Disable credits camera focus easter egg if in main menu --- src/game/camera.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/game/camera.c b/src/game/camera.c index 26b8771c7..4fa24b358 100644 --- a/src/game/camera.c +++ b/src/game/camera.c @@ -7379,9 +7379,11 @@ void reset_pan_distance(UNUSED struct Camera *c) { } /** - * Easter egg: the player 2 controller can move the camera's focus in the ending and credits. + * Easter egg: the player 2 (1) controller can move the camera's focus in the ending and credits. */ void player2_rotate_cam(struct Camera *c, s16 minPitch, s16 maxPitch, s16 minYaw, s16 maxYaw) { + if (gDjuiInMainMenu) { return; } + f32 distCamToFocus; s16 pitch, yaw, pitchCap;