diff --git a/cheevos.c b/cheevos.c index 472995f390..44815d2440 100644 --- a/cheevos.c +++ b/cheevos.c @@ -2211,7 +2211,7 @@ void cheevos_populate_menu(void *data) { if (!cheevo->active) menu_entries_add_enum(info->list, cheevo->title, - cheevo->description, MSG_UNKNOWN, + cheevo->description, MENU_ENUM_LABEL_CHEEVOS_ENTRY, MENU_SETTINGS_CHEEVOS_START + i, 0, 0); } @@ -2225,7 +2225,7 @@ void cheevos_populate_menu(void *data) { if (!cheevo->active) menu_entries_add_enum(info->list, cheevo->title, - cheevo->description, MSG_UNKNOWN, + cheevo->description, MENU_ENUM_LABEL_CHEEVOS_ENTRY, MENU_SETTINGS_CHEEVOS_START + i, 0, 0); } } @@ -2247,7 +2247,7 @@ void cheevos_populate_menu(void *data) { if (cheevo->active) menu_entries_add_enum(info->list, cheevo->title, - cheevo->description, MSG_UNKNOWN, + cheevo->description, MENU_ENUM_LABEL_CHEEVOS_ENTRY, MENU_SETTINGS_CHEEVOS_START + i, 0, 0); } @@ -2261,7 +2261,7 @@ void cheevos_populate_menu(void *data) { if (cheevo->active) menu_entries_add_enum(info->list, cheevo->title, - cheevo->description, MSG_UNKNOWN, + cheevo->description, MENU_ENUM_LABEL_CHEEVOS_ENTRY, MENU_SETTINGS_CHEEVOS_START + i, 0, 0); } } diff --git a/intl/msg_hash_us.c b/intl/msg_hash_us.c index f3d077907a..958be6aaa4 100644 --- a/intl/msg_hash_us.c +++ b/intl/msg_hash_us.c @@ -1184,6 +1184,8 @@ static const char *menu_hash_to_str_us_label_enum(enum msg_hash_enums msg) return "input_libretro_device_p%u"; case MENU_ENUM_LABEL_RUN: return "collection"; + case MENU_ENUM_LABEL_CHEEVOS_ENTRY: + return "cheevos_entry"; case MENU_ENUM_LABEL_FILEBROWSER_ENTRY: return "filebrowser_entry"; case MENU_ENUM_LABEL_CORE_INFO_ENTRY: diff --git a/msg_hash.h b/msg_hash.h index d41c224708..f8774fcc4e 100644 --- a/msg_hash.h +++ b/msg_hash.h @@ -284,6 +284,7 @@ enum msg_hash_enums MSG_EXTRACTING_FILE, MSG_NO_CONTENT_STARTING_DUMMY_CORE, + MENU_ENUM_LABEL_CHEEVOS_ENTRY, MENU_ENUM_LABEL_FILEBROWSER_ENTRY, MENU_ENUM_LABEL_SHADER_PARAMETERS_ENTRY, MENU_ENUM_LABEL_RDB_ENTRY,