Fix signed/unsigned mismatch warning

This commit is contained in:
twinaphex 2017-01-10 19:49:00 +01:00
parent a835149f69
commit da244c177b

View File

@ -550,7 +550,7 @@ static INLINE bool input_menu_keys_pressed_internal(
)
{
unsigned port;
int port_max = all_users_control_menu ? max_users : 1;
unsigned port_max = all_users_control_menu ? max_users : 1;
for (port = 0; port < port_max; port++)
{