fix that bug here too

This commit is contained in:
Arisotura 2020-05-28 16:07:34 +02:00
parent d25dc40e70
commit d1d572210f
1 changed files with 3 additions and 0 deletions

View File

@ -199,6 +199,9 @@ void InputConfigDialog::on_InputConfigDialog_rejected()
void InputConfigDialog::on_cbxJoystick_currentIndexChanged(int id)
{
// prevent a spurious change
if (ui->cbxJoystick->count() < 2) return;
Input::JoystickID = id;
Input::OpenJoystick();
}