Merge pull request #8270 from alfrix/master

Use the mame thumbnail repo for all the mame playlists
This commit is contained in:
Twinaphex 2019-02-14 07:05:30 +01:00 committed by GitHub
commit a702e0d59d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}