1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-04 22:20:25 +00:00

Merge pull request from alphanu1/master

Small fix for low res cores for CRT switching < 200
This commit is contained in:
Twinaphex 2018-09-22 12:59:45 +02:00 committed by GitHub
commit 2ee6b75d11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -100,13 +100,13 @@ static void crt_screen_setup_aspect(unsigned width, unsigned height)
crt_aspect_ratio_switch(width, height); crt_aspect_ratio_switch(width, height);
} }
if (height < 191 && height != 144) if (height < 200 && height != 144)
{ {
crt_aspect_ratio_switch(width, height); crt_aspect_ratio_switch(width, height);
height = 200; height = 200;
} }
if (height > 191) if (height > 200)
crt_aspect_ratio_switch(width, height); crt_aspect_ratio_switch(width, height);
if (height == 144 && ra_set_core_hz == 50) if (height == 144 && ra_set_core_hz == 50)