diff --git a/menu/drivers/xmb.c b/menu/drivers/xmb.c index 3693192562..b8c2cc5b33 100644 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -866,7 +866,8 @@ static void xmb_update_thumbnail_path(void *data, unsigned i) tmp = string_replace_substring(entry.path, "\\", "_"); tmp = string_replace_substring(entry.path, "/", "_"); tmp = string_replace_substring(entry.path, "\?", "_"); - tmp = string_replace_substring(entry.path, ":", "_"); + tmp = string_replace_substring(entry.path, ":", "_"); + tmp = string_replace_substring(entry.path, ";", "_"); tmp = string_replace_substring(entry.path, "<", "_"); tmp = string_replace_substring(entry.path, ">", "_"); tmp = string_replace_substring(entry.path, "*", "_");