mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
Silence another signed/unsigned warning
This commit is contained in:
parent
e3ddb75a2a
commit
63eafbcac2
@ -2994,7 +2994,7 @@ static int menu_displaylist_parse_netplay_room_list(
|
||||
if (netplay_room_count > 0)
|
||||
{
|
||||
unsigned i;
|
||||
for (i = 0; i < netplay_room_count; i++)
|
||||
for (i = 0; i < (unsigned)netplay_room_count; i++)
|
||||
{
|
||||
char s[PATH_MAX_LENGTH];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user