Use the mame thumbnail repo for all the mame playlists

This commit is contained in:
Alfredo Monclus 2019-02-12 06:47:00 -03:00
parent 49bade15ae
commit 2b5a2f0b3d

View File

@ -1201,6 +1201,9 @@ static void xmb_set_thumbnail_system(void *data, char*s, size_t len)
if (!string_is_empty(xmb->thumbnail_system))
free(xmb->thumbnail_system);
/* There is only one mame thumbnail repo */
if (strncmp("MAME", s, 4) == 0)
strcpy(s, "MAME");
xmb->thumbnail_system = strdup(s);
}