From 92446de9d98b8f523342ce6954fd246f49071bb0 Mon Sep 17 00:00:00 2001 From: Raul Tambre Date: Wed, 27 Apr 2016 18:08:12 +0300 Subject: [PATCH] Change "start after boot" default value to true --- rpcs3/Emu/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index 253824b2de..4db13bc6fd 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -25,7 +25,7 @@ #include -cfg::bool_entry g_cfg_autostart(cfg::root.misc, "Always start after boot"); +cfg::bool_entry g_cfg_autostart(cfg::root.misc, "Always start after boot", true); cfg::bool_entry g_cfg_autoexit(cfg::root.misc, "Exit RPCS3 when process finishes"); std::string g_cfg_defaults;