Skip to content

Commit

Permalink
Merge pull request libretro#8270 from alfrix/master
Browse files Browse the repository at this point in the history
Use the mame thumbnail repo for all the mame playlists
  • Loading branch information
inactive123 authored Feb 14, 2019
2 parents d0e5eb0 + 2b5a2f0 commit a702e0d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions menu/drivers/xmb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit a702e0d

Please sign in to comment.