Merge pull request #264 from valentinvanelslande/cmd-dynarmic
yuzu_cmd: change default cpu core to dynarmic
This commit is contained in:
commit
633abd5a94
|
@ -91,7 +91,7 @@ void Config::ReadValues() {
|
||||||
|
|
||||||
// Core
|
// Core
|
||||||
Settings::values.cpu_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
|
// Renderer
|
||||||
Settings::values.resolution_factor =
|
Settings::values.resolution_factor =
|
||||||
|
|
|
@ -77,7 +77,7 @@ touch_device=
|
||||||
|
|
||||||
[Core]
|
[Core]
|
||||||
# Which CPU core to use for CPU emulation
|
# Which CPU core to use for CPU emulation
|
||||||
# 0 (default): Unicorn (slow), 1: Dynarmic (faster)
|
# 0: Unicorn (slow), 1 (default): Dynarmic (faster)
|
||||||
cpu_core =
|
cpu_core =
|
||||||
|
|
||||||
[Renderer]
|
[Renderer]
|
||||||
|
|
Loading…
Reference in New Issue