mirror of
https://github.com/libretro/RetroArch
synced 2025-03-22 16:20:58 +00:00
Fix -Wmissing-braces warnings
This commit is contained in:
parent
d1006042bd
commit
ac1b292cfd
@ -165,7 +165,7 @@ static int action_iterate_help(char *s, size_t len, const char *label)
|
|||||||
RETRO_DEVICE_ID_JOYPAD_X,
|
RETRO_DEVICE_ID_JOYPAD_X,
|
||||||
RETRO_DEVICE_ID_JOYPAD_Y,
|
RETRO_DEVICE_ID_JOYPAD_Y,
|
||||||
};
|
};
|
||||||
char desc[ARRAY_SIZE(binds)][64] = {0};
|
char desc[ARRAY_SIZE(binds)][64] = {{0}};
|
||||||
menu_handle_t *menu = menu_driver_get_ptr();
|
menu_handle_t *menu = menu_driver_get_ptr();
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ static bool content_playlist_read_file(
|
|||||||
content_playlist_t *playlist, const char *path)
|
content_playlist_t *playlist, const char *path)
|
||||||
{
|
{
|
||||||
unsigned i;
|
unsigned i;
|
||||||
char buf[PLAYLIST_ENTRIES][1024] = {0};
|
char buf[PLAYLIST_ENTRIES][1024] = {{0}};
|
||||||
content_playlist_entry_t *entry = NULL;
|
content_playlist_entry_t *entry = NULL;
|
||||||
char *last = NULL;
|
char *last = NULL;
|
||||||
FILE *file = fopen(path, "r");
|
FILE *file = fopen(path, "r");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user