mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-11 20:03:14 +00:00
settings: Turn docked mode off by default.
This commit is contained in:
parent
49e5de9f03
commit
03c2d049d4
|
@ -97,7 +97,7 @@ void Config::ReadValues() {
|
||||||
qt_config->endGroup();
|
qt_config->endGroup();
|
||||||
|
|
||||||
qt_config->beginGroup("System");
|
qt_config->beginGroup("System");
|
||||||
Settings::values.use_docked_mode = qt_config->value("use_docked_mode", true).toBool();
|
Settings::values.use_docked_mode = qt_config->value("use_docked_mode", false).toBool();
|
||||||
qt_config->endGroup();
|
qt_config->endGroup();
|
||||||
|
|
||||||
qt_config->beginGroup("Miscellaneous");
|
qt_config->beginGroup("Miscellaneous");
|
||||||
|
|
|
@ -110,7 +110,7 @@ void Config::ReadValues() {
|
||||||
sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true);
|
sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true);
|
||||||
|
|
||||||
// System
|
// 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
|
// Miscellaneous
|
||||||
Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Trace");
|
Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Trace");
|
||||||
|
|
|
@ -163,7 +163,7 @@ use_virtual_sd =
|
||||||
|
|
||||||
[System]
|
[System]
|
||||||
# Whether the system is docked
|
# Whether the system is docked
|
||||||
# 1 (default): Yes, 0: No
|
# 1: Yes, 0 (default): No
|
||||||
use_docked_mode =
|
use_docked_mode =
|
||||||
|
|
||||||
# The system region that yuzu will use during emulation
|
# The system region that yuzu will use during emulation
|
||||||
|
|
Loading…
Reference in a new issue