Merge pull request #54 from alphanu1/alphanu1-patch-52

Linux resolution improvements for CRT
This commit is contained in:
alphanu1 2018-05-01 20:28:22 +01:00 committed by GitHub
commit 11374ddf12
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); crt_aspect_ratio_switch(width, height);
height = 254; height = 254;
} }
if (width < 300)
{
width = width*2;
crt_aspect_ratio_switch(width, height);
{
switch_res_crt(width, height); switch_res_crt(width, height);
} }