From c9c3c626e85a37e5fe6bc6fbd42a62a47c638948 Mon Sep 17 00:00:00 2001 From: alphanu1 <37101891+alphanu1@users.noreply.github.com> Date: Tue, 12 Feb 2019 11:23:53 +0000 Subject: [PATCH] turn dynamic super res off on the fly --- gfx/video_driver.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gfx/video_driver.c b/gfx/video_driver.c index 50ca1e5843..28ee36f792 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -2650,6 +2650,8 @@ void video_driver_frame(const void *data, unsigned width, width = 1920; if (video_info.crt_switch_resolution_super == 1) video_driver_crt_dynamic_super_width = true; + else + video_driver_crt_dynamic_super_width = false; crt_switch_res_core(width, height, video_driver_core_hz, video_info.crt_switch_resolution, video_info.crt_switch_center_adjust, video_info.monitor_index, video_driver_crt_dynamic_super_width); }