1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-23 19:21:03 +00:00

content_playlist_push - some improvements

This commit is contained in:
twinaphex 2015-05-26 04:17:27 +02:00
parent c94e29ed02
commit 3c6e4e8dbf

@ -187,8 +187,8 @@ void content_playlist_push(content_playlist_t *playlist,
playlist->entries[0].path = path ? strdup(path) : NULL;
playlist->entries[0].label = label ? strdup(label) : NULL;
playlist->entries[0].core_path = strdup(core_path);
playlist->entries[0].core_name = strdup(core_name);
playlist->entries[0].core_path = core_path ? strdup(core_path) : NULL;
playlist->entries[0].core_name = core_name ? strdup(core_name) : NULL;
playlist->entries[0].crc32 = crc32 ? strdup(crc32) : NULL;
playlist->size++;
}