(PC) config_save_file_on_exit off by default

This commit is contained in:
twinaphex 2013-05-22 15:50:38 +02:00
parent 79ea30f54f
commit c315dc90cf

View File

@ -260,7 +260,11 @@ static unsigned aspect_ratio_idx = ASPECT_RATIO_CONFIG; // Use g_settings.video.
#endif
// Save configuration file on exit
#if defined(RARCH_CONSOLE) || defined(ANDROID) || defined(__QNX__) || defined(IOS)
static bool config_save_on_exit = true;
#else
static bool config_save_on_exit = false;
#endif
// Crop overscanned frames.
static const bool crop_overscan = true;