diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2022-06-29 02:35:51 +0200 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2022-07-24 02:40:25 +0200 |
commit | 403bdc4dafe89a463f3d93b9a389a1010ca5ff16 (patch) | |
tree | 88df3fada076b04c2ab2da8972d1d785f492b520 /src/common | |
parent | service: irs: Move to IRS namespace and minor fixes (diff) | |
download | yuzu-403bdc4dafe89a463f3d93b9a389a1010ca5ff16.tar yuzu-403bdc4dafe89a463f3d93b9a389a1010ca5ff16.tar.gz yuzu-403bdc4dafe89a463f3d93b9a389a1010ca5ff16.tar.bz2 yuzu-403bdc4dafe89a463f3d93b9a389a1010ca5ff16.tar.lz yuzu-403bdc4dafe89a463f3d93b9a389a1010ca5ff16.tar.xz yuzu-403bdc4dafe89a463f3d93b9a389a1010ca5ff16.tar.zst yuzu-403bdc4dafe89a463f3d93b9a389a1010ca5ff16.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/settings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 20959ec89..1079cf8cb 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -503,8 +503,8 @@ struct Values { Setting<bool> enable_ring_controller{true, "enable_ring_controller"}; RingconRaw ringcon_analogs; - BasicSetting<bool> enable_ir_sensor{false, "enable_ir_sensor"}; - BasicSetting<std::string> ir_sensor_device{"auto", "ir_sensor_device"}; + 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"}; |