diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-01-10 15:37:38 +0100 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-01-10 15:37:38 +0100 |
commit | 05f58144c93585423d9622e5b71ae4510d0b839a (patch) | |
tree | 8b764fddf9d1ad6b22d4f6c92232e1680503d0c8 /src/yuzu_cmd/config.cpp | |
parent | Merge pull request #5323 from Morph1984/enforce-c4101 (diff) | |
download | yuzu-05f58144c93585423d9622e5b71ae4510d0b839a.tar yuzu-05f58144c93585423d9622e5b71ae4510d0b839a.tar.gz yuzu-05f58144c93585423d9622e5b71ae4510d0b839a.tar.bz2 yuzu-05f58144c93585423d9622e5b71ae4510d0b839a.tar.lz yuzu-05f58144c93585423d9622e5b71ae4510d0b839a.tar.xz yuzu-05f58144c93585423d9622e5b71ae4510d0b839a.tar.zst yuzu-05f58144c93585423d9622e5b71ae4510d0b839a.zip |
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
-rw-r--r-- | src/yuzu_cmd/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index 38075c345..41ef6f6b8 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp @@ -344,7 +344,7 @@ void Config::ReadValues() { // System Settings::values.use_docked_mode.SetValue( - sdl2_config->GetBoolean("System", "use_docked_mode", false)); + sdl2_config->GetBoolean("System", "use_docked_mode", true)); Settings::values.current_user = std::clamp<int>( sdl2_config->GetInteger("System", "current_user", 0), 0, Service::Account::MAX_USERS - 1); |