Merge pull request #264 from valentinvanelslande/cmd-dynarmic

yuzu_cmd: change default cpu core to dynarmic
This commit is contained in:
bunnei 2018-03-22 23:53:15 -04:00 committed by GitHub
commit 633abd5a94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ void Config::ReadValues() {
// Core
Settings::values.cpu_core =
static_cast<Settings::CpuCore>(sdl2_config->GetInteger("Core", "cpu_core", 0));
static_cast<Settings::CpuCore>(sdl2_config->GetInteger("Core", "cpu_core", 1));
// Renderer
Settings::values.resolution_factor =

View File

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