(PS3) ps3_input.c - Get rid of unneeded else

This commit is contained in:
twinaphex 2014-09-03 17:59:55 +02:00
parent ba8f817587
commit 6a825fbd7a

View File

@ -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)