From d0f23fdddb62c15150ca5244bb11a611f5865ebf Mon Sep 17 00:00:00 2001 From: markwkidd Date: Tue, 15 Nov 2016 09:05:33 -0500 Subject: [PATCH] Update xmb.c --- menu/drivers/xmb.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, "*", "_");