mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-22 18:58:21 +00:00
Merge pull request #2515 from lakkatv/master
(Menu) Fix the empty setting list edge case. Prevents being stuck in …
This commit is contained in:
commit
94c164762c
@ -1633,7 +1633,7 @@ loop:
|
||||
menu_settings_list_increment(&setting);
|
||||
}
|
||||
|
||||
if (count == 0 && add_empty_entry)
|
||||
if (count <= 1 && add_empty_entry)
|
||||
menu_entries_push(info->list,
|
||||
menu_hash_to_str(MENU_LABEL_VALUE_NO_SETTINGS_FOUND),
|
||||
menu_hash_to_str(MENU_LABEL_NO_SETTINGS_FOUND),
|
||||
|
Loading…
Reference in New Issue
Block a user