summaryrefslogtreecommitdiff
path: root/riscos/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/options.h')
-rw-r--r--riscos/options.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/riscos/options.h b/riscos/options.h
index fa26885ea..7cdcfedb1 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -39,7 +39,7 @@ extern int option_window_width;
extern int option_window_height;
extern int option_window_screen_width;
extern int option_window_screen_height;
-
+extern int option_minimum_gif_delay;
#define EXTRA_OPTION_DEFINE \
bool option_use_mouse_gestures = false;\
@@ -64,7 +64,8 @@ int option_window_y = 0; \
int option_window_width = 0; \
int option_window_height = 0; \
int option_window_screen_width = 0; \
-int option_window_screen_height = 0;
+int option_window_screen_height = 0; \
+int option_minimum_gif_delay = 10;
#define EXTRA_OPTION_TABLE \
{ "use_mouse_gestures", OPTION_BOOL, &option_use_mouse_gestures },\
@@ -89,6 +90,7 @@ int option_window_screen_height = 0;
{ "window_width", OPTION_INTEGER, &option_window_width }, \
{ "window_height", OPTION_INTEGER, &option_window_height }, \
{ "window_screen_width", OPTION_INTEGER, &option_window_screen_width }, \
-{ "window_screen_height", OPTION_INTEGER, &option_window_screen_height }
+{ "window_screen_height", OPTION_INTEGER, &option_window_screen_height }, \
+{ "minimum_gif_delay", OPTION_INTEGER, &option_minimum_gif_delay }
#endif