(GX) Set GX to 4:3 aspect ratio by default when there is no libretro.cfg

This commit is contained in:
twinaphex 2013-02-09 08:30:25 +01:00
parent 6cfc469f01
commit 2ed42b848d
1 changed files with 2 additions and 0 deletions

View File

@ -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