diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-07-24 13:31:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-24 13:31:28 -0400 |
commit | 5af06d14337a61d9ed1093079d13f68cbb1f5451 (patch) | |
tree | 88df3fada076b04c2ab2da8972d1d785f492b520 /src/common/settings.h | |
parent | 97729fd8e9c2f8cabc626ab03a666c9428e01c5e (diff) | |
parent | 403bdc4dafe89a463f3d93b9a389a1010ca5ff16 (diff) |
Merge pull request #8484 from german77/irs_release
service: irs: Add camera support, split processors and implement ImageTransferProcessor
Diffstat (limited to 'src/common/settings.h')
-rw-r--r-- | src/common/settings.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 06d72c8bf..1079cf8cb 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -503,6 +503,9 @@ struct Values { Setting<bool> enable_ring_controller{true, "enable_ring_controller"}; RingconRaw ringcon_analogs; + Setting<bool> enable_ir_sensor{false, "enable_ir_sensor"}; + Setting<std::string> ir_sensor_device{"auto", "ir_sensor_device"}; + // Data Storage Setting<bool> use_virtual_sd{true, "use_virtual_sd"}; Setting<bool> gamecard_inserted{false, "gamecard_inserted"}; |