Merge pull request #3958 from HarbourMasters/develop-macready

macready -> develop
This commit is contained in:
Archez
2024-02-20 10:32:28 -05:00
committed by GitHub
2 changed files with 6 additions and 4 deletions

View File

@@ -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;