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 5c9392038..be1769d15 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -43,6 +43,7 @@ extern bool option_window_size_clone;
extern int option_minimum_gif_delay;
extern bool option_background_images;
extern bool option_background_blending;
+extern bool option_buffer_animations;
#define EXTRA_OPTION_DEFINE \
bool option_use_mouse_gestures = false;\
@@ -71,7 +72,8 @@ bool option_window_stagger = true; \
bool option_window_size_clone = true; \
int option_minimum_gif_delay = 10; \
bool option_background_images = true; \
-bool option_background_blending = false;
+bool option_background_blending = true; \
+bool option_buffer_animations = true;
#define EXTRA_OPTION_TABLE \
{ "use_mouse_gestures", OPTION_BOOL, &option_use_mouse_gestures },\
@@ -100,6 +102,7 @@ bool option_background_blending = false;
{ "window_size_clone", OPTION_BOOL, &option_window_size_clone }, \
{ "minimum_gif_delay", OPTION_INTEGER, &option_minimum_gif_delay }, \
{ "background_images", OPTION_BOOL, &option_background_images }, \
-{ "background_blending", OPTION_BOOL, &option_background_blending }
+{ "background_blending", OPTION_BOOL, &option_background_blending }, \
+{ "buffer_animations", OPTION_BOOL, &option_buffer_animations }
#endif