From 92e2221c2dcfedaa68e44f1fedc0e72fe200cace Mon Sep 17 00:00:00 2001 From: Tatsuya79 Date: Sun, 6 Jan 2019 19:10:40 +0100 Subject: [PATCH] fix gong scaling (#7907) --- cores/libretro-gong/gong.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cores/libretro-gong/gong.c b/cores/libretro-gong/gong.c index da1e621f5b..8c354e460e 100644 --- a/cores/libretro-gong/gong.c +++ b/cores/libretro-gong/gong.c @@ -33,8 +33,8 @@ #define GONG_CORE_PREFIX(s) s #endif -#define WIDTH 320 -#define HEIGHT 240 +#define WIDTH 356 +#define HEIGHT 200 #define FPS (60000.0f / 1000.0f) static retro_log_printf_t GONG_CORE_PREFIX(log_cb); @@ -144,7 +144,7 @@ void GONG_CORE_PREFIX(retro_get_system_av_info)(struct retro_system_av_info *inf info->geometry.base_height = HEIGHT; info->geometry.max_width = WIDTH; info->geometry.max_height = HEIGHT; - info->geometry.aspect_ratio = 4.0f / 3.0f; + info->geometry.aspect_ratio = 16.0f / 9.0f; info->timing.fps = FPS; info->timing.sample_rate = 44100.0; }