From 890bbc0cd3ab070f8e1ef32806fe51ab20dd8579 Mon Sep 17 00:00:00 2001 From: bunnei Date: Fri, 12 Jan 2018 21:05:37 -0500 Subject: config: Default CPU core to Unicorn. --- src/citra/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/citra/config.cpp') diff --git a/src/citra/config.cpp b/src/citra/config.cpp index e44931abd..94d1a9f1c 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp @@ -83,7 +83,7 @@ void Config::ReadValues() { // Core Settings::values.cpu_core = - static_cast(sdl2_config->GetInteger("Core", "cpu_core", 1)); + static_cast(sdl2_config->GetInteger("Core", "cpu_core", 0)); // Renderer Settings::values.use_hw_renderer = sdl2_config->GetBoolean("Renderer", "use_hw_renderer", true); -- cgit v1.2.3