From 2ed42b848dfc6b191815ef5426c620f70bea1e2a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 9 Feb 2013 08:30:25 +0100 Subject: [PATCH] (GX) Set GX to 4:3 aspect ratio by default when there is no libretro.cfg --- settings.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings.c b/settings.c index 5aa522d3d2..ac89ca2365 100644 --- a/settings.c +++ b/settings.c @@ -276,6 +276,8 @@ void config_set_defaults(void) #if defined(__CELLOS_LV2) || defined(_XBOX360) g_settings.video.aspect_ratio_idx = ASPECT_RATIO_16_9; +#elif defined(GEKKO) || defined(_XBOX1) + g_settings.video.aspect_ratio_idx = ASPECT_RATIO_4_3; #else g_settings.video.aspect_ratio_idx = 0; #endif