diff options
| author | 2018-07-17 21:26:35 -0700 | |
|---|---|---|
| committer | 2018-07-17 21:26:35 -0700 | |
| commit | 7c3cc0895791fff03122386d25cce8d3cfdecd91 (patch) | |
| tree | 2d0b4946f698b4e8b44a47d8168961e80c83f9dc /src/yuzu_cmd | |
| parent | Merge pull request #675 from Subv/stencil (diff) | |
| parent | settings: Turn docked mode off by default. (diff) | |
| download | yuzu-7c3cc0895791fff03122386d25cce8d3cfdecd91.tar.gz yuzu-7c3cc0895791fff03122386d25cce8d3cfdecd91.tar.xz yuzu-7c3cc0895791fff03122386d25cce8d3cfdecd91.zip | |
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() { | |||
| 110 | sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); | 110 | sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); |
| 111 | 111 | ||
| 112 | // System | 112 | // System |
| 113 | Settings::values.use_docked_mode = sdl2_config->GetBoolean("System", "use_docked_mode", true); | 113 | Settings::values.use_docked_mode = sdl2_config->GetBoolean("System", "use_docked_mode", false); |
| 114 | 114 | ||
| 115 | // Miscellaneous | 115 | // Miscellaneous |
| 116 | Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Trace"); | 116 | 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 = | |||
| 163 | 163 | ||
| 164 | [System] | 164 | [System] |
| 165 | # Whether the system is docked | 165 | # Whether the system is docked |
| 166 | # 1 (default): Yes, 0: No | 166 | # 1: Yes, 0 (default): No |
| 167 | use_docked_mode = | 167 | use_docked_mode = |
| 168 | 168 | ||
| 169 | # The system region that yuzu will use during emulation | 169 | # The system region that yuzu will use during emulation |