config: Enable docked mode by default

This commit is contained in:
Morph 2021-01-10 09:37:38 -05:00
parent fe9588f4a0
commit 05f58144c9
5 changed files with 6 additions and 6 deletions

View file

@ -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);