diff options
Diffstat (limited to 'src/common/settings.h')
| -rw-r--r-- | src/common/settings.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 2bccb8642..1079cf8cb 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"}; |
| @@ -501,6 +503,9 @@ struct Values { | |||
| 501 | Setting<bool> enable_ring_controller{true, "enable_ring_controller"}; | 503 | Setting<bool> enable_ring_controller{true, "enable_ring_controller"}; |
| 502 | RingconRaw ringcon_analogs; | 504 | RingconRaw ringcon_analogs; |
| 503 | 505 | ||
| 506 | Setting<bool> enable_ir_sensor{false, "enable_ir_sensor"}; | ||
| 507 | Setting<std::string> ir_sensor_device{"auto", "ir_sensor_device"}; | ||
| 508 | |||
| 504 | // Data Storage | 509 | // Data Storage |
| 505 | Setting<bool> use_virtual_sd{true, "use_virtual_sd"}; | 510 | Setting<bool> use_virtual_sd{true, "use_virtual_sd"}; |
| 506 | Setting<bool> gamecard_inserted{false, "gamecard_inserted"}; | 511 | Setting<bool> gamecard_inserted{false, "gamecard_inserted"}; |