From: Toni Wilen Date: Sun, 14 Jan 2024 17:28:52 +0000 (+0200) Subject: Warp mode reset on the fly change X-Git-Tag: 5200~57 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=c278b5c44ad8ee9534d945e1cdd794b1cc3ac3ff;p=francis%2Fwinuae.git Warp mode reset on the fly change --- diff --git a/od-win32/win32gfx.cpp b/od-win32/win32gfx.cpp index de955af2..3d3f0bad 100644 --- a/od-win32/win32gfx.cpp +++ b/od-win32/win32gfx.cpp @@ -2554,6 +2554,7 @@ int check_prefs_changed_gfx(void) currprefs.win32_shutdown_notification != changed_prefs.win32_shutdown_notification || currprefs.win32_warn_exit != changed_prefs.win32_warn_exit || currprefs.win32_gui_control != changed_prefs.win32_gui_control || + currprefs.turbo_boot != changed_prefs.turbo_boot || currprefs.right_control_is_right_win_key != changed_prefs.right_control_is_right_win_key) { currprefs.win32_minimize_inactive = changed_prefs.win32_minimize_inactive; @@ -2579,6 +2580,7 @@ int check_prefs_changed_gfx(void) currprefs.win32_shutdown_notification = changed_prefs.win32_shutdown_notification; currprefs.win32_warn_exit = changed_prefs.win32_warn_exit; currprefs.win32_gui_control = changed_prefs.win32_gui_control; + currprefs.turbo_boot = changed_prefs.turbo_boot; currprefs.right_control_is_right_win_key = changed_prefs.right_control_is_right_win_key; inputdevice_unacquire (); currprefs.keyboard_leds_in_use = changed_prefs.keyboard_leds_in_use = (currprefs.keyboard_leds[0] | currprefs.keyboard_leds[1] | currprefs.keyboard_leds[2]) != 0;