Set savestate_auto_load to false by default - certain cores still

crash with this feature on so we don't want to leave this enabled
by default
This commit is contained in:
twinaphex 2014-09-18 08:39:06 +02:00
parent 94a269dbca
commit db33f26405

View File

@ -535,7 +535,7 @@ static const bool savestate_auto_index = false;
* RetroArch will automatically load any savestate with this path on
* startup if savestate_auto_load is set. */
static const bool savestate_auto_save = false;
static const bool savestate_auto_load = true;
static const bool savestate_auto_load = false;
/* Slowmotion ratio. */
static const float slowmotion_ratio = 3.0;