diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-17 21:26:35 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-17 21:26:35 -0700 |
| commit | 7c3cc0895791fff03122386d25cce8d3cfdecd91 (patch) | |
| tree | 2d0b4946f698b4e8b44a47d8168961e80c83f9dc /src/yuzu_cmd | |
| parent | 8e28af6f89b4160db96be299675132a0ced7374d (diff) | |
| parent | 03c2d049d43197a97b7899541e4b4763a2fb1eda (diff) | |
Merge pull request #677 from bunnei/crop-fb
Implement buffer cropping and default to handheld mode
Diffstat (limited to 'src/yuzu_cmd')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 2 | ||||
| -rw-r--r-- | src/yuzu_cmd/default_ini.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index 3a311b69f..723e8b4cc 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp @@ -110,7 +110,7 @@ void Config::ReadValues() { sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); // System - Settings::values.use_docked_mode = sdl2_config->GetBoolean("System", "use_docked_mode", true); + Settings::values.use_docked_mode = sdl2_config->GetBoolean("System", "use_docked_mode", false); // Miscellaneous Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Trace"); diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h index 71d2e040f..5eca38b48 100644 --- a/src/yuzu_cmd/default_ini.h +++ b/src/yuzu_cmd/default_ini.h @@ -163,7 +163,7 @@ use_virtual_sd = [System] # Whether the system is docked -# 1 (default): Yes, 0: No +# 1: Yes, 0 (default): No use_docked_mode = # The system region that yuzu will use during emulation |
