From 89e6df7b60d151310fedbe118fb472959a9dcd61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Tom=C3=A1s?= <15609863+rtomasa@users.noreply.github.com> Date: Sun, 5 Dec 2021 19:48:08 +0100 Subject: [PATCH] Fixed RA info base_height (#66) --- core/libretro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/libretro.c b/core/libretro.c index 594a36f..e27707c 100644 --- a/core/libretro.c +++ b/core/libretro.c @@ -359,7 +359,7 @@ void retro_get_system_av_info(struct retro_system_av_info *info) info->timing.fps = (cartridge_region == REGION_NTSC) ? 60 : 50; info->timing.sample_rate = (prosystem_frequency * prosystem_scanlines) << 1; /* 2 samples per scanline */ info->geometry.base_width = videoWidth; - info->geometry.base_height = videoHeight; + info->geometry.base_height = (cartridge_region == REGION_NTSC) ? 223 : 272; info->geometry.max_width = 320; info->geometry.max_height = 292; info->geometry.aspect_ratio = 4.0 / 3.0;