summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/global.h8
-rw-r--r--include/text.h2
2 files changed, 9 insertions, 1 deletions
diff --git a/include/global.h b/include/global.h
index be35f1299..d23204760 100644
--- a/include/global.h
+++ b/include/global.h
@@ -29,6 +29,14 @@ enum
VERSION_RUBY = 2,
};
+enum LanguageId {
+ LANGUAGE_JAPANESE = 1,
+ LANGUAGE_ENGLISH = 2,
+ LANGUAGE_GERMAN = 5,
+};
+
+#define GAME_LANGUAGE (LANGUAGE_ENGLISH)
+
enum
{
MALE,
diff --git a/include/text.h b/include/text.h
index 2c66f30dc..7dbbcb844 100644
--- a/include/text.h
+++ b/include/text.h
@@ -36,7 +36,7 @@ struct Window
{
u8 textMode;
u8 fontNum;
- u8 charset;
+ u8 language;
u8 foregroundColor;
u8 backgroundColor;
u8 shadowColor;