Linux resolution improvements for CRT

This commit is contained in:
alphanu1 2018-05-01 20:28:01 +01:00 committed by GitHub
parent ab6acd1115
commit 11b0fe2a97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}