mirror of
https://github.com/libretro/RetroArch.git
synced 2025-01-22 09:15:02 +00:00
(MSVC) Another casting fix
This commit is contained in:
parent
debc0ca010
commit
1acf6cab46
@ -1931,7 +1931,9 @@ rarch_setting_t* setting_data_get_list(void)
|
||||
|
||||
rarch_setting_t terminator = { ST_NONE };
|
||||
APPEND(terminator);
|
||||
list = realloc(list, sizeof(rarch_setting_t)*index);//flatten this array to save ourselves some kilobytes
|
||||
|
||||
/* flatten this array to save ourselves some kilobytes */
|
||||
list = (rarch_setting_t*)realloc(list, sizeof(rarch_setting_t) * index);
|
||||
}
|
||||
|
||||
return list;
|
||||
|
Loading…
x
Reference in New Issue
Block a user