Dehardcore 'more' string

This commit is contained in:
twinaphex 2016-07-17 00:52:56 +02:00
parent 73fa327305
commit 0b474b3d26
2 changed files with 3 additions and 1 deletions

View File

@ -2566,6 +2566,8 @@ const char *msg_hash_to_str_us(enum msg_hash_enums msg)
return "Internal storage status";
case MENU_ENUM_LABEL_VALUE_PARENT_DIRECTORY:
return "Parent directory";
case MENU_ENUM_LABEL_VALUE_MORE:
return "...";
case MENU_ENUM_LABEL_VALUE_RUN:
return "Run";
case MENU_ENUM_LABEL_VALUE_VIDEO_VIEWPORT_CUSTOM_X:

View File

@ -598,7 +598,7 @@ static void menu_action_setting_disp_set_label_menu_more(
const char *path,
char *s2, size_t len2)
{
strlcpy(s, "...", len);
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_MORE), len);
*w = 19;
strlcpy(s2, path, len2);
}