Browse Source
Merge pull request #264 from valentinvanelslande/cmd-dynarmic
yuzu_cmd: change default cpu core to dynarmic
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
src/yuzu_cmd/config.cpp
-
src/yuzu_cmd/default_ini.h
|
|
|
@ -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 = |
|
|
|
|
|
|
|
@ -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] |
|
|
|
|