input_common: Split mouse input into individual devices

This commit is contained in:
Narr the Reg
2023-02-16 13:38:50 -06:00
parent 57aaf00a0c
commit 17207939e5
10 changed files with 114 additions and 31 deletions

View File

@ -1490,7 +1490,7 @@ void ConfigureInputPlayer::mousePressEvent(QMouseEvent* event) {
}
const auto button = GRenderWindow::QtButtonToMouseButton(event->button());
input_subsystem->GetMouse()->PressButton(0, 0, 0, 0, button);
input_subsystem->GetMouse()->PressButton(0, 0, button);
}
void ConfigureInputPlayer::wheelEvent(QWheelEvent* event) {