mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-15 23:06:40 +00:00
(PS3) ps3_input.c - Get rid of unneeded else
This commit is contained in:
parent
ba8f817587
commit
6a825fbd7a
@ -59,8 +59,7 @@ static inline int16_t convert_u8_to_s16(uint8_t val)
|
||||
{
|
||||
if (val == 0)
|
||||
return -0x7fff;
|
||||
else
|
||||
return val * 0x0101 - 0x8000;
|
||||
return val * 0x0101 - 0x8000;
|
||||
}
|
||||
|
||||
static void ps3_input_poll(void *data)
|
||||
|
Loading…
Reference in New Issue
Block a user