Match rest of mstory2

This commit is contained in:
gamemasterplc 2025-01-11 00:00:37 -06:00
parent 98a95407ff
commit 84904c805e
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)