Merge pull request #2937 from lakkatv/master

(XMB) Prevent showing 'Directory not found' as a playlist. Fixes the …
This commit is contained in:
Twinaphex 2016-05-03 03:11:20 +02:00
commit a3f3f00959
1 changed files with 2 additions and 1 deletions

View File

@ -2639,7 +2639,8 @@ static int menu_displaylist_parse_generic(
? menu_hash_to_str(MENU_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE)
: menu_hash_to_str(MENU_LABEL_VALUE_DIRECTORY_NOT_FOUND);
menu_entries_add(info->list, str, "", 0, 0, 0);
if (! horizontal)
menu_entries_add(info->list, str, "", 0, 0, 0);
return 0;
}