(input/android_input.c) Remove extraneous else
This commit is contained in:
parent
5a77b1aef3
commit
c564252f2f
|
@ -825,9 +825,8 @@ static bool android_joypad_button(unsigned port_num, uint16_t joykey)
|
||||||
default: return false;
|
default: return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
return joykey < LAST_KEYCODE && get_bit(android->pad_state[port_num],
|
||||||
return joykey < LAST_KEYCODE && get_bit(android->pad_state[port_num],
|
joykey);
|
||||||
joykey);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int16_t android_joypad_axis(unsigned port_num, uint32_t joyaxis)
|
static int16_t android_joypad_axis(unsigned port_num, uint32_t joyaxis)
|
||||||
|
|
Loading…
Reference in New Issue