mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
if this returns -1, add an empty entry anyway
This commit is contained in:
parent
5c55c098f6
commit
1035029a89
@ -4581,9 +4581,14 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type, void *data)
|
||||
menu_displaylist_parse_settings_enum(menu, info,
|
||||
MENU_ENUM_LABEL_CAMERA_ALLOW,
|
||||
PARSE_ONLY_BOOL, false);
|
||||
menu_displaylist_parse_settings_enum(menu, info,
|
||||
if (menu_displaylist_parse_settings_enum(menu, info,
|
||||
MENU_ENUM_LABEL_LOCATION_ALLOW,
|
||||
PARSE_ONLY_BOOL, true);
|
||||
PARSE_ONLY_BOOL, true) == -1)
|
||||
menu_entries_append_enum(info->list,
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND),
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_NO_SETTINGS_FOUND),
|
||||
MENU_ENUM_LABEL_NO_SETTINGS_FOUND,
|
||||
0, 0, 0);
|
||||
|
||||
info->need_refresh = true;
|
||||
info->need_push = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user