diff options
| author | 2018-01-12 21:05:37 -0500 | |
|---|---|---|
| committer | 2018-01-12 21:05:37 -0500 | |
| commit | 890bbc0cd3ab070f8e1ef32806fe51ab20dd8579 (patch) | |
| tree | 1fa0d120366ccddf0d7b6b2a566bf30a5f6b58e5 /src/citra_qt/configuration/config.cpp | |
| parent | CMakeLists: Use C++ 17. (diff) | |
| download | yuzu-890bbc0cd3ab070f8e1ef32806fe51ab20dd8579.tar.gz yuzu-890bbc0cd3ab070f8e1ef32806fe51ab20dd8579.tar.xz yuzu-890bbc0cd3ab070f8e1ef32806fe51ab20dd8579.zip | |
config: Default CPU core to Unicorn.
Diffstat (limited to 'src/citra_qt/configuration/config.cpp')
| -rw-r--r-- | src/citra_qt/configuration/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/configuration/config.cpp b/src/citra_qt/configuration/config.cpp index 68d565c39..fd884db7a 100644 --- a/src/citra_qt/configuration/config.cpp +++ b/src/citra_qt/configuration/config.cpp | |||
| @@ -68,7 +68,7 @@ void Config::ReadValues() { | |||
| 68 | 68 | ||
| 69 | qt_config->beginGroup("Core"); | 69 | qt_config->beginGroup("Core"); |
| 70 | Settings::values.cpu_core = | 70 | Settings::values.cpu_core = |
| 71 | static_cast<Settings::CpuCore>(qt_config->value("cpu_core", 1).toInt()); | 71 | static_cast<Settings::CpuCore>(qt_config->value("cpu_core", 0).toInt()); |
| 72 | qt_config->endGroup(); | 72 | qt_config->endGroup(); |
| 73 | 73 | ||
| 74 | qt_config->beginGroup("Renderer"); | 74 | qt_config->beginGroup("Renderer"); |