From 05a2699f384e5ed76a2b753f82c1e64a245ce01e Mon Sep 17 00:00:00 2001 From: "simon.kagstrom" Date: Sat, 23 May 2009 14:23:46 +0000 Subject: [PATCH] Redraw screen after the menu --- src/gui-sdl/gui-sdl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui-sdl/gui-sdl.c b/src/gui-sdl/gui-sdl.c index 4ba8446..a9fdf94 100644 --- a/src/gui-sdl/gui-sdl.c +++ b/src/gui-sdl/gui-sdl.c @@ -349,6 +349,7 @@ static void general_options(void) /* There are a few unfortunate header problems, so I'll do like this for now */ struct uae_prefs; void read_inputdevice_config (struct uae_prefs *pr, const char *option, const char *value); +void notice_screen_contents_lost (void); static void insert_keyboard_map(const char *key, const char *fmt, ...) { @@ -648,6 +649,7 @@ void gui_display(int shortcut) prefs_has_changed = 0; opt = menu_select_title("Main menu", main_menu_messages, submenus); + notice_screen_contents_lost (); if (opt < 0) return;