add check for market balcony camera (#6464)

This commit is contained in:
OtherBlue 2026-04-06 01:04:58 -03:00 committed by GitHub
parent b6f227961b
commit 978a219213
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -84,7 +84,8 @@ static void DisableFixedCamera_RestoreAllCameraData() {
// Helper to check if a camera type is a fixed camera // Helper to check if a camera type is a fixed camera
static bool IsFixedCameraType(s16 type) { 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() { static void RegisterDisableFixedCamera() {