diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-08-15 11:50:18 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-08-15 11:50:18 +0200 |
commit | 92c4fc6345faf9e5c8af4035103eea26164b68bd (patch) | |
tree | 5f1c19793dc4db18c3b65e2b2f71ffd4429880e8 /include/contest.h | |
parent | c806992cfc5a4fac53f2c8a52b32f7a039773e41 (diff) |
Contest AI clean-up
Diffstat (limited to 'include/contest.h')
-rw-r--r-- | include/contest.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/contest.h b/include/contest.h index 761b16369..18f9ad21f 100644 --- a/include/contest.h +++ b/include/contest.h @@ -341,7 +341,8 @@ struct UnknownContestStruct7 u8 contestant; }; -struct ContestAIInfo { +struct ContestAIInfo +{ /*0x00*/ u8 aiState; /*0x02*/ u16 unk2; /*0x04*/ u8 unk4; @@ -352,9 +353,9 @@ struct ContestAIInfo { /*0x14*/ u32 flags; /*0x18*/ s16 scriptResult; /*0x1A*/ s16 scriptArr[3]; - /*0x20*/ u32 stack[8]; - /*0x40*/ u8 unk40; - /*0x41*/ u8 unk41; + /*0x20*/ const u8 *stack[8]; + /*0x40*/ u8 stackSize; + /*0x41*/ u8 contestantId; }; struct UnknownContestStruct5 |