GLUI: Fix null label icon (#17538)
This commit is contained in:
parent
2c06049a2f
commit
3bf04c6034
|
@ -1550,6 +1550,10 @@ MSG_HASH(
|
||||||
MENU_ENUM_LABEL_DISK_OPTIONS,
|
MENU_ENUM_LABEL_DISK_OPTIONS,
|
||||||
"core_disk_options"
|
"core_disk_options"
|
||||||
)
|
)
|
||||||
|
MSG_HASH(
|
||||||
|
MENU_ENUM_LABEL_DISK_INDEX,
|
||||||
|
"core_disk_index"
|
||||||
|
)
|
||||||
MSG_HASH(
|
MSG_HASH(
|
||||||
MENU_ENUM_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST,
|
MENU_ENUM_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST,
|
||||||
"downloaded_file_detect_core_list"
|
"downloaded_file_detect_core_list"
|
||||||
|
|
|
@ -10692,6 +10692,8 @@ static void materialui_list_insert(void *userdata,
|
||||||
* switch */
|
* switch */
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
if (string_is_equal(label, "null"))
|
||||||
|
break;
|
||||||
#ifdef HAVE_CHEEVOS
|
#ifdef HAVE_CHEEVOS
|
||||||
if (type >= MENU_SETTINGS_CHEEVOS_START &&
|
if (type >= MENU_SETTINGS_CHEEVOS_START &&
|
||||||
type < MENU_SETTINGS_NETPLAY_ROOMS_START)
|
type < MENU_SETTINGS_NETPLAY_ROOMS_START)
|
||||||
|
|
Loading…
Reference in New Issue