diff options
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index cea1a5e62..c581e9699 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -105,6 +105,11 @@ void Config::ReadValues() { | |||
| 105 | Settings::values.bg_green = (float)sdl2_config->GetReal("Renderer", "bg_green", 0.0); | 105 | Settings::values.bg_green = (float)sdl2_config->GetReal("Renderer", "bg_green", 0.0); |
| 106 | Settings::values.bg_blue = (float)sdl2_config->GetReal("Renderer", "bg_blue", 0.0); | 106 | Settings::values.bg_blue = (float)sdl2_config->GetReal("Renderer", "bg_blue", 0.0); |
| 107 | 107 | ||
| 108 | // Audio | ||
| 109 | Settings::values.sink_id = sdl2_config->Get("Audio", "output_engine", "auto"); | ||
| 110 | Settings::values.audio_device_id = sdl2_config->Get("Audio", "output_device", "auto"); | ||
| 111 | Settings::values.volume = sdl2_config->GetReal("Audio", "volume", 1); | ||
| 112 | |||
| 108 | // Data Storage | 113 | // Data Storage |
| 109 | Settings::values.use_virtual_sd = | 114 | Settings::values.use_virtual_sd = |
| 110 | sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); | 115 | sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); |