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/WGInput/WGInput.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/WGInput/WGInput.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/WGInput/WGInput.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/WGInput/WGInput.cpp b/Source/Core/InputCommon/ControllerInterface/WGInput/WGInput.cpp index 2fa3fc2e77..a688ca0366 100644 --- a/Source/Core/InputCommon/ControllerInterface/WGInput/WGInput.cpp +++ b/Source/Core/InputCommon/ControllerInterface/WGInput/WGInput.cpp @@ -125,9 +125,8 @@ public: u32 i = 0; for (auto& axis : m_axes) { - // AddAnalogInputs adds additional "FullAnalogSurface" Inputs. - AddAnalogInputs(new IndexedAxis(&axis, 0.5, +0.5, i), - new IndexedAxis(&axis, 0.5, -0.5, i)); + AddFullAnalogSurfaceInputs(new IndexedAxis(&axis, 0.5, +0.5, i), + new IndexedAxis(&axis, 0.5, -0.5, i)); ++i; } } |
