summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/DInput
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2024-11-04 11:04:50 +0100
committerGitHub <noreply@github.com>2024-11-04 11:04:50 +0100
commitb8823457c14248b61ffb400c6af080db2aa799b0 (patch)
tree444be031ade83f8ef00c719f3dc1b813d780bafb /Source/Core/InputCommon/ControllerInterface/DInput
parent6a59e83bbba2a1495a89a844e636f67aa87a32a8 (diff)
parent346a9e0f97d4e17abb237a638896ef43db30488f (diff)
Merge pull request #13165 from jordan-woyak/FullAnalogSurface-rename
InputCommon: Rename AddAnalogInputs to AddFullAnalogSurfaceInputs.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/DInput')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/DInput/DInputJoystick.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/DInput/DInputJoystick.cpp b/Source/Core/InputCommon/ControllerInterface/DInput/DInputJoystick.cpp
index a78c310f24..95cacc6da7 100644
--- a/Source/Core/InputCommon/ControllerInterface/DInput/DInputJoystick.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/DInput/DInputJoystick.cpp
@@ -167,8 +167,8 @@ Joystick::Joystick(const LPDIRECTINPUTDEVICE8 device) : m_device(device)
const LONG& ax = (&m_state_in.lX)[offset];
// each axis gets a negative and a positive input instance associated with it
- AddAnalogInputs(new Axis(offset, ax, base, range.lMin - base),
- new Axis(offset, ax, base, range.lMax - base));
+ AddFullAnalogSurfaceInputs(new Axis(offset, ax, base, range.lMin - base),
+ new Axis(offset, ax, base, range.lMax - base));
}
}