From 4e760fcc8b31de261268e984395875a008fdf91c Mon Sep 17 00:00:00 2001 From: Monroe88 Date: Fri, 20 May 2016 23:48:35 -0500 Subject: [PATCH] Make core provided display aspect ratio have 8:7 pixel aspect ratio --- src/drivers/libretro/libretro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/libretro/libretro.c b/src/drivers/libretro/libretro.c index 6032ac0..d1d1404 100644 --- a/src/drivers/libretro/libretro.c +++ b/src/drivers/libretro/libretro.c @@ -572,7 +572,7 @@ void retro_get_system_av_info(struct retro_system_av_info *info) info->geometry.base_height = height; info->geometry.max_width = width; info->geometry.max_height = height; - info->geometry.aspect_ratio = 4.0 / 3.0; + info->geometry.aspect_ratio = (width * (8.0 / 7.0)) / height; info->timing.sample_rate = 32050.0; if (FSettings.PAL) info->timing.fps = 838977920.0/16777215.0;