summaryrefslogtreecommitdiffstats
path: root/src/citra/config.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-13 03:05:37 +0100
committerbunnei <bunneidev@gmail.com>2018-01-13 03:05:37 +0100
commit890bbc0cd3ab070f8e1ef32806fe51ab20dd8579 (patch)
tree1fa0d120366ccddf0d7b6b2a566bf30a5f6b58e5 /src/citra/config.cpp
parentCMakeLists: Use C++ 17. (diff)
downloadyuzu-890bbc0cd3ab070f8e1ef32806fe51ab20dd8579.tar
yuzu-890bbc0cd3ab070f8e1ef32806fe51ab20dd8579.tar.gz
yuzu-890bbc0cd3ab070f8e1ef32806fe51ab20dd8579.tar.bz2
yuzu-890bbc0cd3ab070f8e1ef32806fe51ab20dd8579.tar.lz
yuzu-890bbc0cd3ab070f8e1ef32806fe51ab20dd8579.tar.xz
yuzu-890bbc0cd3ab070f8e1ef32806fe51ab20dd8579.tar.zst
yuzu-890bbc0cd3ab070f8e1ef32806fe51ab20dd8579.zip
Diffstat (limited to '')
-rw-r--r--src/citra/config.cpp2
1 files changed, 1 insertions, 1 deletions
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<Settings::CpuCore>(sdl2_config->GetInteger("Core", "cpu_core", 1));
+ static_cast<Settings::CpuCore>(sdl2_config->GetInteger("Core", "cpu_core", 0));
// Renderer
Settings::values.use_hw_renderer = sdl2_config->GetBoolean("Renderer", "use_hw_renderer", true);