mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-01 22:42:22 +00:00
(MSVC) Silence warning
This commit is contained in:
parent
0ab79550c9
commit
45b1ed33b2
@ -103,7 +103,7 @@ bool file_list_insert(file_list_t *list,
|
||||
if (!file_list_expand_if_needed(list))
|
||||
return false;
|
||||
|
||||
for (i = (unsigned)list->size; i > idx; i--)
|
||||
for (i = (unsigned)list->size; i > (int)idx; i--)
|
||||
{
|
||||
struct item_file *copy = (struct item_file*)
|
||||
calloc(1, sizeof(struct item_file));
|
||||
|
Loading…
x
Reference in New Issue
Block a user