diff options
author | Garrett Brown <themagnificentmrb@gmail.com> | 2023-02-23 00:13:42 -0800 |
---|---|---|
committer | Garrett Brown <themagnificentmrb@gmail.com> | 2023-03-02 18:08:55 -0800 |
commit | 66e1dab2a4f72f123d54956ed222a2a99c9bce48 (patch) | |
tree | 43d1cd158236a35d9a78b703477628b8656a2d3b /system | |
parent | 703e64bfedb4fffcb9df5045554bd3e272e6051b (diff) |
Peripherals: Fix missing mapping node name in log
Before:
PERIPHERALS::CPeripherals::LoadMappings - loaded node ""
After:
PERIPHERALS::CPeripherals::LoadMappings - loaded node "joystick"
Diffstat (limited to 'system')
-rw-r--r-- | system/peripherals.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/peripherals.xml b/system/peripherals.xml index 5b08ed468b..c91d977a8b 100644 --- a/system/peripherals.xml +++ b/system/peripherals.xml @@ -57,7 +57,7 @@ <setting key="keymap" value="osmc" label="35007" configurable="1"/> </peripheral> - <peripheral class="joystick" mapTo="joystick"> + <peripheral class="joystick" name="joystick" mapTo="joystick"> <setting key="left_stick_deadzone" type="float" label="35078" order="1" value="0.2" min="0.0" step="0.05" max="1.0" /> <setting key="right_stick_deadzone" type="float" label="35079" order="2" value="0.2" min="0.0" step="0.05" max="1.0" /> </peripheral> |