From 978a2192131ec8de8793da10d515a12a7c4590d5 Mon Sep 17 00:00:00 2001 From: OtherBlue <93625085+OtherBlue@users.noreply.github.com> Date: Mon, 6 Apr 2026 01:04:58 -0300 Subject: [PATCH] add check for market balcony camera (#6464) --- soh/soh/Enhancements/Graphics/DisableFixedCamera.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/Graphics/DisableFixedCamera.cpp b/soh/soh/Enhancements/Graphics/DisableFixedCamera.cpp index b937a98b10..f6692ce29b 100644 --- a/soh/soh/Enhancements/Graphics/DisableFixedCamera.cpp +++ b/soh/soh/Enhancements/Graphics/DisableFixedCamera.cpp @@ -84,7 +84,8 @@ static void DisableFixedCamera_RestoreAllCameraData() { // Helper to check if a camera type is a fixed camera static bool IsFixedCameraType(s16 type) { - return type == CAM_SET_PREREND_FIXED || type == CAM_SET_PREREND_PIVOT || type == CAM_SET_PIVOT_FROM_SIDE; + return type == CAM_SET_PREREND_FIXED || type == CAM_SET_PREREND_PIVOT || type == CAM_SET_PIVOT_FROM_SIDE || + type == CAM_SET_MARKET_BALCONY; } static void RegisterDisableFixedCamera() {