From 6a380f5e866e5abf0ee71950fee88c5703998a20 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 21 May 2015 20:37:48 +0200 Subject: [PATCH] (XMB) More list refresh fixes --- menu/menu_displaylist.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/menu/menu_displaylist.c b/menu/menu_displaylist.c index a9e3e7dc46..61b2557f5d 100644 --- a/menu/menu_displaylist.c +++ b/menu/menu_displaylist.c @@ -1855,6 +1855,8 @@ static int menu_displaylist_parse(menu_displaylist_info_t *info, : "Directory not found."; menu_list_push(info->list, str, "", 0, 0); + *need_refresh = true; + *need_push = true; return 0; } @@ -1868,6 +1870,8 @@ static int menu_displaylist_parse(menu_displaylist_info_t *info, menu_list_push(info->list, "No items.", "", 0, 0); string_list_free(str_list); + *need_refresh = true; + *need_push = true; return 0; }