diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-05-29 14:17:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-29 14:17:03 -0400 |
commit | e6c0d16a679663e816130ca7bc793cab682f911c (patch) | |
tree | 57a330cbec60b4033531c452406771e79301a680 /include/global.h | |
parent | d6fd8d1ed926feebffab4154a84eb70a84083bfc (diff) | |
parent | 96183df2b89ae0f2294520550ed382d06250c177 (diff) |
Merge pull request #128 from PikalaxALT/pikalax_work
Decompile unk_02006234.s; misc cleanup
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h index 8d5a3e78..2f31fa3d 100644 --- a/include/global.h +++ b/include/global.h @@ -1,6 +1,7 @@ #ifndef GUARD_GLOBAL_H #define GUARD_GLOBAL_H +#include "config.h" #include "function_target.h" #include "nitro.h" @@ -11,11 +12,17 @@ enum GameVersion { VERSION_FIRE_RED = 4, VERSION_LEAF_GREEN = 5, VERSION_DIAMOND = 10, + VERSION_PEARL = 11, }; enum GameLanguage { LANGUAGE_JAPANESE = 1, LANGUAGE_ENGLISH = 2, + LANGUAGE_FRENCH = 3, + LANGUAGE_ITALIAN = 4, + LANGUAGE_GERMAN = 5, + LANGUAGE_SPANISH = 7, + LANGUAGE_KOREAN = 8 }; extern void ErrorHandling(void); |