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 2c303dd92..bb00506ff 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -41,6 +41,7 @@ extern int option_window_screen_width;
extern int option_window_screen_height;
extern int option_minimum_gif_delay;
extern bool option_background_images;
+extern bool option_background_blending;
#define EXTRA_OPTION_DEFINE \
bool option_use_mouse_gestures = false;\
@@ -67,7 +68,8 @@ int option_window_height = 0; \
int option_window_screen_width = 0; \
int option_window_screen_height = 0; \
int option_minimum_gif_delay = 10; \
-bool option_background_images = true;
+bool option_background_images = true; \
+bool option_background_blending = false;
#define EXTRA_OPTION_TABLE \
{ "use_mouse_gestures", OPTION_BOOL, &option_use_mouse_gestures },\
@@ -94,6 +96,7 @@ bool option_background_images = true;
{ "window_screen_width", OPTION_INTEGER, &option_window_screen_width }, \
{ "window_screen_height", OPTION_INTEGER, &option_window_screen_height }, \
{ "minimum_gif_delay", OPTION_INTEGER, &option_minimum_gif_delay }, \
-{ "background_images", OPTION_BOOL, &option_background_images }
+{ "background_images", OPTION_BOOL, &option_background_images }, \
+{ "background_blending", OPTION_BOOL, &option_background_blending }
#endif