From eaeb4cc1b877504a5c17be9978f5b893b39260eb Mon Sep 17 00:00:00 2001 From: alphanu1 <37101891+alphanu1@users.noreply.github.com> Date: Sat, 22 Sep 2018 10:39:28 +0100 Subject: [PATCH] Low res LCD core fix for CRT --- gfx/video_crt_switch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/video_crt_switch.c b/gfx/video_crt_switch.c index 2cc19eef8e..0da427482e 100644 --- a/gfx/video_crt_switch.c +++ b/gfx/video_crt_switch.c @@ -100,13 +100,13 @@ static void crt_screen_setup_aspect(unsigned width, unsigned height) crt_aspect_ratio_switch(width, height); } - if (height < 191 && height != 144) + if (height < 200 && height != 144) { crt_aspect_ratio_switch(width, height); height = 200; } - if (height > 191) + if (height > 200) crt_aspect_ratio_switch(width, height); if (height == 144 && ra_set_core_hz == 50)