diff options
author | huderlem <huderlem@gmail.com> | 2019-08-13 17:23:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-13 17:23:23 -0500 |
commit | 5cbb66a6e5dd18d133e692a04e116aa3909d22ed (patch) | |
tree | c1ca88b5138d19eb5106f171c8ae77d4516e8b22 /include/global.h | |
parent | 4c8669a3aad601f1381ca9c67c78040ce80157df (diff) | |
parent | 0648ededb9161e9f5fc4e0a38ae91c7bf14e6c0b (diff) |
Merge pull request #8 from camthesaxman/decompile-options
decompile field_select.s and start decompiling options.s
Diffstat (limited to 'include/global.h')
-rwxr-xr-x | include/global.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h index 2a9b072..a42f1aa 100755 --- a/include/global.h +++ b/include/global.h @@ -63,6 +63,22 @@ #define min(a, b) ((a) < (b) ? (a) : (b)) #define max(a, b) ((a) >= (b) ? (a) : (b)) +enum +{ + STATE_INTRO, + STATE_TITLE, + STATE_GAME_MAIN, + STATE_GAME_IDLE, + STATE_OPTIONS, + STATE_POKEDEX, + STATE_UNKNOWN6, + STATE_EREADER, + STATE_SCORES_MAIN, + STATE_SCORES_IDLE, + STATE_FIELD_SELECT, + STATE_BONUS_FIELD_SELECT, +}; + struct PinballGame { /*0x000*/ u8 filler0[0x35]; |