diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-05-24 07:00:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-24 07:00:57 -0400 |
commit | 94af15fab8e80f61326fc0427c5412e60b0d67ea (patch) | |
tree | 9542fdb55f9b183b54ec043aa9f8b2c685bbd7d1 /include/global.h | |
parent | 0b01c7d1c57c4e21fdb0069b3ac4f9c7276b3cc1 (diff) | |
parent | b4743f04e30937b19aca974bf2222de8fe3eb36e (diff) |
Merge pull request #107 from PikalaxALT/pikalax_work
Split rodata and bss
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h index b872b96c..8d5a3e78 100644 --- a/include/global.h +++ b/include/global.h @@ -4,6 +4,20 @@ #include "function_target.h" #include "nitro.h" +enum GameVersion { + VERSION_SAPPHIRE = 1, + VERSION_RUBY = 2, + VERSION_EMERALD = 3, + VERSION_FIRE_RED = 4, + VERSION_LEAF_GREEN = 5, + VERSION_DIAMOND = 10, +}; + +enum GameLanguage { + LANGUAGE_JAPANESE = 1, + LANGUAGE_ENGLISH = 2, +}; + extern void ErrorHandling(void); #endif //GUARD_GLOBAL_H |