remove extra paren

This commit is contained in:
Brad Parker 2017-11-29 11:32:32 -05:00
parent f41187df22
commit 5453853001

View File

@ -499,7 +499,7 @@ static bool wiiusb_hid_joypad_button(void *data, unsigned port, uint16_t joykey)
/* Check the button. */
if ((port < MAX_USERS) && (joykey < 32))
return (RARCH_INPUT_STATE_BIT_GET(buttons, joykey)) != 0);
return (RARCH_INPUT_STATE_BIT_GET(buttons, joykey) != 0);
return false;
}