From 4b8fbf86824cd04b10b3df26dfe00a1bbe659394 Mon Sep 17 00:00:00 2001 From: alphanu1 <37101891+alphanu1@users.noreply.github.com> Date: Tue, 1 May 2018 12:14:25 +0100 Subject: [PATCH] Better startup resolution 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 d848ae5ae0..4504a1a34d 100644 --- a/gfx/video_crt_switch.c +++ b/gfx/video_crt_switch.c @@ -93,8 +93,8 @@ static void crt_screen_setup_aspect(unsigned width, unsigned height) { /* detect menu only */ if (width < 1920) - width = 640; - height = 480; + width = 704; + height = 480; crt_aspect_ratio_switch(width, height); }