diff options
author | Diegoisawesome <diego@domoreaweso.me> | 2017-11-29 00:53:18 -0600 |
---|---|---|
committer | Diegoisawesome <diego@domoreaweso.me> | 2017-11-29 00:53:18 -0600 |
commit | 8e9428c482d33ac59b5c29d89db0bd5a2e6fdef3 (patch) | |
tree | 62718961d57b089f27f7efe8b6b5020320274413 | |
parent | 70743f4b951bb84ca33fd2151e55b2f5018eb6c5 (diff) |
Add languages to enum
-rw-r--r-- | include/global.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h index f3ec9ce33..25fecdc52 100644 --- a/include/global.h +++ b/include/global.h @@ -48,7 +48,11 @@ enum enum LanguageId { LANGUAGE_JAPANESE = 1, LANGUAGE_ENGLISH = 2, + LANGUAGE_FRENCH = 3, + LANGUAGE_ITALIAN = 4, LANGUAGE_GERMAN = 5, + // 6 goes unused but the theory is it was meant to be Korean + LANGUAGE_SPANISH = 7, }; #define GAME_LANGUAGE (LANGUAGE_ENGLISH) |