mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-11 16:49:28 +02:00
InputCommon: Rename AddAnalogInputs to AddFullAnalogSurfaceInputs.
This commit is contained in:
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user