summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOtherBlue <93625085+OtherBlue@users.noreply.github.com>2026-04-06 01:04:58 -0300
committerGitHub <noreply@github.com>2026-04-06 04:04:58 +0000
commit978a2192131ec8de8793da10d515a12a7c4590d5 (patch)
tree3a20684013325d30d353bab7d2a8e89f1df8346e
parentb6f227961b2b48c373ba6da47f16c2dc241bf6cd (diff)
add check for market balcony camera (#6464)
-rw-r--r--soh/soh/Enhancements/Graphics/DisableFixedCamera.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/soh/soh/Enhancements/Graphics/DisableFixedCamera.cpp b/soh/soh/Enhancements/Graphics/DisableFixedCamera.cpp
index b937a98b1..f6692ce29 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() {