config: Default CPU core to Unicorn.

This commit is contained in:
bunnei 2018-01-12 21:05:37 -05:00
parent 941cdae6f0
commit 890bbc0cd3
3 changed files with 3 additions and 3 deletions

View file

@ -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);

View file

@ -68,7 +68,7 @@ touch_device=
[Core]
# Which CPU core to use for CPU emulation
# 0: Unicorn (slow), 1 (default): Dynarmic (faster)
# 0 (default): Unicorn (slow), 1: Dynarmic (faster)
cpu_core =
[Renderer]

View file

@ -68,7 +68,7 @@ void Config::ReadValues() {
qt_config->beginGroup("Core");
Settings::values.cpu_core =
static_cast<Settings::CpuCore>(qt_config->value("cpu_core", 1).toInt());
static_cast<Settings::CpuCore>(qt_config->value("cpu_core", 0).toInt());
qt_config->endGroup();
qt_config->beginGroup("Renderer");