Match rest of mstory2 (#521)

This commit is contained in:
Liam Coleman 2025-01-11 00:04:16 -06:00 committed by GitHub
parent 98a95407ff
commit f28e9d19aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 2142 additions and 13 deletions

View file

@ -40,7 +40,8 @@ typedef struct system_state {
};
/* 0x09 */ s8 last5_effect;
/* 0x0A */ s8 player_curr;
/* 0x0B */ s8 unk0B[3];
/* 0x0B */ u8 unk0B;
/* 0x0C */ s8 unk0C;
/* 0x0E */ s16 block_pos;
/* 0x10 */ u8 ATTRIBUTE_ALIGN(4) board_data[32];
/* 0x30 */ u8 mess_delay;
@ -316,7 +317,7 @@ static inline s32 GWPlayerCurrGet(void)
static inline s32 GWUnkB1Get(void)
{
return GWSystem.unk0B[1];
return GWSystem.unk0C;
}
static inline s32 GWPlayerTeamGet(s32 player)