remove extra paren
This commit is contained in:
parent
f41187df22
commit
5453853001
|
@ -499,7 +499,7 @@ static bool wiiusb_hid_joypad_button(void *data, unsigned port, uint16_t joykey)
|
||||||
|
|
||||||
/* Check the button. */
|
/* Check the button. */
|
||||||
if ((port < MAX_USERS) && (joykey < 32))
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue