summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorGravatar bunnei2018-03-26 22:59:18 -0400
committerGravatar bunnei2018-03-26 23:02:36 -0400
commit5ecf152c8ee1bb6f8f050d16dda56c1b115e0ff3 (patch)
treeeb7722cc9dee21ca3fe35df1187f3e2d41131448 /src/yuzu_cmd
parentconfigure_general: Cleanup naming. (diff)
downloadyuzu-5ecf152c8ee1bb6f8f050d16dda56c1b115e0ff3.tar.gz
yuzu-5ecf152c8ee1bb6f8f050d16dda56c1b115e0ff3.tar.xz
yuzu-5ecf152c8ee1bb6f8f050d16dda56c1b115e0ff3.zip
config: Rename is_docked to use_docked_mode to be consistent with other config bools.
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r--src/yuzu_cmd/config.cpp2
-rw-r--r--src/yuzu_cmd/default_ini.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp
index 38f76d425..b09e9fc0b 100644
--- a/src/yuzu_cmd/config.cpp
+++ b/src/yuzu_cmd/config.cpp
@@ -108,7 +108,7 @@ void Config::ReadValues() {
108 sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); 108 sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true);
109 109
110 // System 110 // System
111 Settings::values.is_docked = sdl2_config->GetBoolean("System", "is_docked", true); 111 Settings::values.use_docked_mode = sdl2_config->GetBoolean("System", "use_docked_mode", true);
112 112
113 // Miscellaneous 113 // Miscellaneous
114 Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Trace"); 114 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 50802104c..c42aba6a4 100644
--- a/src/yuzu_cmd/default_ini.h
+++ b/src/yuzu_cmd/default_ini.h
@@ -156,7 +156,7 @@ use_virtual_sd =
156[System] 156[System]
157# Whether the system is docked 157# Whether the system is docked
158# 1 (default): Yes, 0: No 158# 1 (default): Yes, 0: No
159is_docked = 159use_docked_mode =
160 160
161# The system region that Citra will use during emulation 161# The system region that Citra will use during emulation
162# -1: Auto-select (default), 0: Japan, 1: USA, 2: Europe, 3: Australia, 4: China, 5: Korea, 6: Taiwan 162# -1: Auto-select (default), 0: Japan, 1: USA, 2: Europe, 3: Australia, 4: China, 5: Korea, 6: Taiwan