diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-01-14 13:59:12 -0500 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-01-14 13:59:12 -0500 |
commit | d7d947c6913d1a2a7a6401b8aac2041d536ad978 (patch) | |
tree | 8caf4c275a77b2b02dd8e0ba5003bf6080c91feb /include | |
parent | e769bb92568d732429645cfceb9c18fb49858431 (diff) |
formatting and clean up
Diffstat (limited to 'include')
-rw-r--r-- | include/battle_ai.h | 8 | ||||
-rw-r--r-- | include/contest.h | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/include/battle_ai.h b/include/battle_ai.h index c22ca8633..fdad0c7e9 100644 --- a/include/battle_ai.h +++ b/include/battle_ai.h @@ -10,10 +10,10 @@ enum // AI states enum { - AIState_SettingUp, - AIState_Processing, - AIState_FinishedProcessing, - AIState_DoNotProcess + BATTLEAI_SETTING_UP, + BATTLEAI_PROCESSING, + BATTLEAI_FINISHED, + BATTLEAI_DO_NOT_PROCESS }; // battle_ai diff --git a/include/contest.h b/include/contest.h index 956f4d02b..b7cb46810 100644 --- a/include/contest.h +++ b/include/contest.h @@ -76,7 +76,7 @@ struct ContestAIInfo { /*0x0A*/ u8 fillerA[0x6]; // TODO: don't know what's here /*0x10*/ u8 unk10; /*0x14*/ u32 flags; - /*0x18*/ u16 scriptResult; + /*0x18*/ s16 scriptResult; /*0x1A*/ u16 scriptArr[3]; /*0x20*/ u32 stack[8]; /*0x40*/ u8 unk40; |