diff options
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index f3134d4cb..96f1ef636 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -139,6 +139,8 @@ void Config::ReadValues() { | |||
| 139 | Settings::values.rng_seed = std::nullopt; | 139 | Settings::values.rng_seed = std::nullopt; |
| 140 | } | 140 | } |
| 141 | 141 | ||
| 142 | Settings::values.language_index = sdl2_config->GetInteger("System", "language_index", 1); | ||
| 143 | |||
| 142 | // Miscellaneous | 144 | // Miscellaneous |
| 143 | Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Trace"); | 145 | Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Trace"); |
| 144 | Settings::values.use_dev_keys = sdl2_config->GetBoolean("Miscellaneous", "use_dev_keys", false); | 146 | Settings::values.use_dev_keys = sdl2_config->GetBoolean("Miscellaneous", "use_dev_keys", false); |
| @@ -148,6 +150,7 @@ void Config::ReadValues() { | |||
| 148 | Settings::values.gdbstub_port = | 150 | Settings::values.gdbstub_port = |
| 149 | static_cast<u16>(sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689)); | 151 | static_cast<u16>(sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689)); |
| 150 | Settings::values.program_args = sdl2_config->Get("Debugging", "program_args", ""); | 152 | Settings::values.program_args = sdl2_config->Get("Debugging", "program_args", ""); |
| 153 | Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); | ||
| 151 | 154 | ||
| 152 | // Web Service | 155 | // Web Service |
| 153 | Settings::values.enable_telemetry = | 156 | Settings::values.enable_telemetry = |