summaryrefslogtreecommitdiff
path: root/riscos/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/options.h')
-rw-r--r--riscos/options.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/riscos/options.h b/riscos/options.h
index 965216170..a70e58198 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -19,17 +19,20 @@ extern bool option_use_mouse_gestures;
extern bool option_allow_text_selection;
extern bool option_show_toolbar;
extern char *option_theme;
+extern char *option_language;
#define EXTRA_OPTION_DEFINE \
bool option_use_mouse_gestures = false;\
bool option_allow_text_selection = true;\
bool option_show_toolbar = true;\
-char *option_theme = 0;
+char *option_theme = 0;\
+char *option_language = 0;
#define EXTRA_OPTION_TABLE \
{ "use_mouse_gestures", OPTION_BOOL, &option_use_mouse_gestures },\
{ "allow_text_selection", OPTION_BOOL, &option_allow_text_selection },\
{ "show_toolbar", OPTION_BOOL, &option_show_toolbar },\
-{ "theme", OPTION_STRING, &option_theme }
+{ "theme", OPTION_STRING, &option_theme },\
+{ "language", OPTION_STRING, &option_language }
#endif