From c3beeb3ca9e13f82db38d7cdbc8c492ed1bbcf62 Mon Sep 17 00:00:00 2001 From: alphanu1 <37101891+alphanu1@users.noreply.github.com> Date: Thu, 3 May 2018 09:36:37 +0100 Subject: [PATCH] Fix incorrect menu sizing for CRT --- gfx/video_crt_switch.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gfx/video_crt_switch.c b/gfx/video_crt_switch.c index f4dd720f60..c8c5d260fa 100644 --- a/gfx/video_crt_switch.c +++ b/gfx/video_crt_switch.c @@ -93,10 +93,9 @@ static void crt_screen_setup_aspect(unsigned width, unsigned height) { /* detect menu only */ if (width < 1920) - { width = 704; - height = 480; - } + + height = 480; crt_aspect_ratio_switch(width, height); }