mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
input: increase mouse acceleration maximum
This commit is contained in:
parent
af11546b1e
commit
d8435163bb
2 changed files with 4 additions and 4 deletions
|
|
@ -420,8 +420,8 @@ void keyboard_pad_handler::mouseMoveEvent(QMouseEvent* event)
|
|||
last_pos_y = event->y();
|
||||
}
|
||||
|
||||
movement_x = m_multi_x * movement_x;
|
||||
movement_y = m_multi_y * movement_y;
|
||||
movement_x *= m_multi_x;
|
||||
movement_y *= m_multi_y;
|
||||
|
||||
int deadzone_x = 0;
|
||||
int deadzone_y = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue