Fix signed/unsigned mismatch warning
This commit is contained in:
parent
a835149f69
commit
da244c177b
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue