From db33f264057e5ecf4752878cb27e6ae90b0f3f4e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 18 Sep 2014 08:39:06 +0200 Subject: [PATCH] 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 --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 863488f151..6ccd861128 100644 --- a/config.def.h +++ b/config.def.h @@ -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;