mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 01:49:33 -06:00
ControllerInterface: Input detection improvements.
This commit is contained in:
@ -343,7 +343,7 @@ ControlState evdevDevice::Axis::GetState() const
|
||||
int value = 0;
|
||||
libevdev_fetch_event_value(m_dev, EV_ABS, m_code, &value);
|
||||
|
||||
return std::max(0.0, ControlState(value - m_base) / m_range);
|
||||
return ControlState(value - m_base) / m_range;
|
||||
}
|
||||
|
||||
evdevDevice::Effect::Effect(int fd) : m_fd(fd)
|
||||
|
Reference in New Issue
Block a user