diff options
| author | 2023-05-18 16:30:39 -0700 | |
|---|---|---|
| committer | 2023-07-21 10:56:07 -0400 | |
| commit | 3281ea935ff66cef6fbfa1b83564fb4ac96918cc (patch) | |
| tree | faacd00cd44955dbbdd33fa404586c7ac5b06176 /src/common | |
| parent | configuration: Clean up includes a bit (diff) | |
| download | yuzu-3281ea935ff66cef6fbfa1b83564fb4ac96918cc.tar.gz yuzu-3281ea935ff66cef6fbfa1b83564fb4ac96918cc.tar.xz yuzu-3281ea935ff66cef6fbfa1b83564fb4ac96918cc.zip | |
settings: Make volume runtime-configurable
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index d4b41a162..a9ce113ef 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -550,7 +550,7 @@ struct Values { | |||
| 550 | Setting<std::string> audio_output_device_id{linkage, "auto", "output_device", Category::Audio}; | 550 | Setting<std::string> audio_output_device_id{linkage, "auto", "output_device", Category::Audio}; |
| 551 | Setting<std::string> audio_input_device_id{linkage, "auto", "input_device", Category::Audio}; | 551 | Setting<std::string> audio_input_device_id{linkage, "auto", "input_device", Category::Audio}; |
| 552 | Setting<bool, false> audio_muted{linkage, false, "audio_muted", Category::Audio, false}; | 552 | Setting<bool, false> audio_muted{linkage, false, "audio_muted", Category::Audio, false}; |
| 553 | SwitchableSetting<u8, true> volume{linkage, 100, 0, 200, "volume", Category::Audio}; | 553 | SwitchableSetting<u8, true> volume{linkage, 100, 0, 200, "volume", Category::Audio, true, true}; |
| 554 | Setting<bool, false> dump_audio_commands{linkage, false, "dump_audio_commands", Category::Audio, | 554 | Setting<bool, false> dump_audio_commands{linkage, false, "dump_audio_commands", Category::Audio, |
| 555 | false}; | 555 | false}; |
| 556 | 556 | ||