We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21c00e7 commit 9e5f6f4Copy full SHA for 9e5f6f4
menu/menu_displaylist.c
@@ -1985,6 +1985,7 @@ static unsigned menu_displaylist_parse_system_info(file_list_t *list)
1985
size_t _len = strlcpy(entry,
1986
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_BUNDLE_IDENTIFIER),
1987
sizeof(entry));
1988
+ _len += strlcpy(entry + _len, ": ", sizeof(entry) - _len);
1989
Boolean result = CFStringGetCString(bundleIdentifier, entry + _len, sizeof(entry) - _len, kCFStringEncodingUTF8);
1990
if (result) {
1991
if (menu_entries_append(list, entry, "",
0 commit comments