diff --git a/gfx/video_crt_switch.c b/gfx/video_crt_switch.c index 07ce0c76a6..126fe7d8cf 100644 --- a/gfx/video_crt_switch.c +++ b/gfx/video_crt_switch.c @@ -145,6 +145,11 @@ static void crt_screen_setup_aspect(unsigned width, unsigned height) crt_aspect_ratio_switch(width, height); height = 254; } + if (width < 300) + { + width = width*2; + crt_aspect_ratio_switch(width, height); + { switch_res_crt(width, height); }