From f7d2fbd212bca2b0efdc5bebbf268d19c4491538 Mon Sep 17 00:00:00 2001 From: alphanu1 <37101891+alphanu1@users.noreply.github.com> Date: Tue, 12 Feb 2019 10:04:41 +0000 Subject: [PATCH] fix for dynamic super resolutions --- gfx/video_driver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/video_driver.c b/gfx/video_driver.c index dfe571e690..ea68acd237 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -2648,9 +2648,9 @@ void video_driver_frame(const void *data, unsigned width, width = 3840; if (video_info.crt_switch_resolution_super == 1920) width = 1920; - if (video_info.crt_switch_resolution_super == 1920) + if (video_info.crt_switch_resolution_super == 1) video_driver_crt_dynamic_super_width = true; - + 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); } else if (!video_info.crt_switch_resolution)