Fixed bug #6533 - PS2_JoystickUpdate: some invalid condition

This commit is contained in:
Sylvain 2022-11-17 09:34:27 +01:00
parent b7358e47d5
commit 60c6cd554d
No known key found for this signature in database
GPG Key ID: 5F87E02E5BC0939E
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ static void PS2_JoystickUpdate(SDL_Joystick *joystick)
struct JoyInfo *info = &joyInfo[index];
int state = padGetState(info->port, info->slot);
if (state != PAD_STATE_DISCONN || state != PAD_STATE_EXECCMD || state != PAD_STATE_ERROR) {
if (state != PAD_STATE_DISCONN && state != PAD_STATE_EXECCMD && state != PAD_STATE_ERROR) {
int ret = padRead(info->port, info->slot, &buttons); /* port, slot, buttons */
if (ret != 0) {
/* Buttons */