From 2f1390e9f9706a3c5c0bc46df17006ddf98d4cec Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Sat, 2 Nov 2024 17:10:45 -0500 Subject: InputCommon: Rename AddAnalogInputs to AddFullAnalogSurfaceInputs. --- Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp') diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp index 324619c927..6a86217190 100644 --- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp +++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp @@ -710,8 +710,8 @@ GameController::GameController(SDL_GameController* const gamecontroller, const bool is_registered = registered_axes.contains(i); // each axis gets a negative and a positive input instance associated with it - AddAnalogInputs(new LegacyAxis(m_joystick, i, -32768, is_registered), - new LegacyAxis(m_joystick, i, 32767, is_registered)); + AddFullAnalogSurfaceInputs(new LegacyAxis(m_joystick, i, -32768, is_registered), + new LegacyAxis(m_joystick, i, 32767, is_registered)); } // Hats -- cgit v1.2.3