summaryrefslogtreecommitdiff
path: root/soh/src/code
diff options
context:
space:
mode:
Diffstat (limited to 'soh/src/code')
-rw-r--r--soh/src/code/z_camera_data.inc8
1 files changed, 5 insertions, 3 deletions
diff --git a/soh/src/code/z_camera_data.inc b/soh/src/code/z_camera_data.inc
index b9e0ba864..90b1874c7 100644
--- a/soh/src/code/z_camera_data.inc
+++ b/soh/src/code/z_camera_data.inc
@@ -16,9 +16,11 @@ typedef struct {
union {
u32 unk_00;
struct {
- u32 unk_bit0 : 1;
- u32 unk_bit1 : 1;
- u32 validModes : 30;
+ // SoH [Port] These bitfield values are unused and led to shifting in validModes for little endian systems
+ // Removing those so that validModes can be a complete 32 bit value
+ // u32 unk_bit0 : 1;
+ // u32 unk_bit1 : 1;
+ u32 validModes;
};
};
CameraMode* cameraModes;