diff options
| author | 2022-07-23 15:20:39 -0400 | |
|---|---|---|
| committer | 2022-07-23 15:20:39 -0400 | |
| commit | 97729fd8e9c2f8cabc626ab03a666c9428e01c5e (patch) | |
| tree | f6a2f3b6c71b51a646d1502c01a4f6be92a3ed26 /src/common/settings.h | |
| parent | Merge pull request #8629 from Docteh/test_transifex (diff) | |
| parent | Project Andio (diff) | |
| download | yuzu-97729fd8e9c2f8cabc626ab03a666c9428e01c5e.tar.gz yuzu-97729fd8e9c2f8cabc626ab03a666c9428e01c5e.tar.xz yuzu-97729fd8e9c2f8cabc626ab03a666c9428e01c5e.zip | |
Merge pull request #8545 from Kelebek1/Audio
Project Andio
Diffstat (limited to 'src/common/settings.h')
| -rw-r--r-- | src/common/settings.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 2bccb8642..06d72c8bf 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -370,10 +370,12 @@ struct TouchFromButtonMap { | |||
| 370 | 370 | ||
| 371 | struct Values { | 371 | struct Values { |
| 372 | // Audio | 372 | // Audio |
| 373 | Setting<std::string> audio_device_id{"auto", "output_device"}; | ||
| 374 | Setting<std::string> sink_id{"auto", "output_engine"}; | 373 | Setting<std::string> sink_id{"auto", "output_engine"}; |
| 374 | Setting<std::string> audio_output_device_id{"auto", "output_device"}; | ||
| 375 | Setting<std::string> audio_input_device_id{"auto", "input_device"}; | ||
| 375 | Setting<bool> audio_muted{false, "audio_muted"}; | 376 | Setting<bool> audio_muted{false, "audio_muted"}; |
| 376 | SwitchableSetting<u8, true> volume{100, 0, 100, "volume"}; | 377 | SwitchableSetting<u8, true> volume{100, 0, 100, "volume"}; |
| 378 | Setting<bool> dump_audio_commands{false, "dump_audio_commands"}; | ||
| 377 | 379 | ||
| 378 | // Core | 380 | // Core |
| 379 | SwitchableSetting<bool> use_multi_core{true, "use_multi_core"}; | 381 | SwitchableSetting<bool> use_multi_core{true, "use_multi_core"}; |