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/Pipes/Pipes.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/Pipes/Pipes.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.cpp b/Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.cpp index 1a2052089e..50175ebaf7 100644 --- a/Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Pipes/Pipes.cpp @@ -129,7 +129,7 @@ void PipeDevice::AddAxis(const std::string& name, double value) ax_lo->SetState(value); m_axes[name + " +"] = ax_hi; m_axes[name + " -"] = ax_lo; - AddAnalogInputs(ax_lo, ax_hi); + AddFullAnalogSurfaceInputs(ax_lo, ax_hi); } void PipeDevice::SetAxis(const std::string& entry, double value) |
