diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2024-11-04 11:04:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-04 11:04:50 +0100 |
| commit | b8823457c14248b61ffb400c6af080db2aa799b0 (patch) | |
| tree | 444be031ade83f8ef00c719f3dc1b813d780bafb /Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp | |
| parent | 6a59e83bbba2a1495a89a844e636f67aa87a32a8 (diff) | |
| parent | 346a9e0f97d4e17abb237a638896ef43db30488f (diff) | |
Merge pull request #13165 from jordan-woyak/FullAnalogSurface-rename
InputCommon: Rename AddAnalogInputs to AddFullAnalogSurfaceInputs.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp index e0ae924b83..bb51d0026e 100644 --- a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp +++ b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp @@ -572,7 +572,8 @@ bool evdevDevice::AddNode(std::string devnode, int fd, libevdev* dev) { if (libevdev_has_event_code(dev, EV_ABS, axis)) { - AddAnalogInputs(new Axis(num_axis, axis, false, dev), new Axis(num_axis, axis, true, dev)); + AddFullAnalogSurfaceInputs(new Axis(num_axis, axis, false, dev), + new Axis(num_axis, axis, true, dev)); ++num_axis; } } |
