Add new enum values

This commit is contained in:
twinaphex 2016-06-17 18:26:13 +02:00
parent 0eb847e9b1
commit 07b655f03d
2 changed files with 17 additions and 0 deletions

View File

@ -26,6 +26,14 @@ static const char *menu_hash_to_str_us_label_enum(enum menu_hash_enums msg)
{
switch (msg)
{
case MENU_ENUM_LABEL_SETTINGS_TAB:
return "settings_tab";
case MENU_ENUM_LABEL_HISTORY_TAB:
return "history_tab";
case MENU_ENUM_LABEL_ADD_TAB:
return "add_tab";
case MENU_ENUM_LABEL_PLAYLISTS_TAB:
return "playlists_tab";
case MENU_ENUM_LABEL_PARENT_DIRECTORY:
return "parent_directory";
case MENU_ENUM_LABEL_INPUT_PLAYER_ANALOG_DPAD_MODE:

View File

@ -724,10 +724,19 @@ enum menu_hash_enums
MENU_ENUM_LABEL_VALUE_CRC,
MENU_ENUM_LABEL_VALUE_MORE,
MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU,
MENU_ENUM_LABEL_SETTINGS_TAB,
MENU_ENUM_LABEL_VALUE_SETTINGS_TAB,
MENU_ENUM_LABEL_HISTORY_TAB,
MENU_ENUM_LABEL_VALUE_HISTORY_TAB,
MENU_ENUM_LABEL_ADD_TAB,
MENU_ENUM_LABEL_VALUE_ADD_TAB,
MENU_ENUM_LABEL_PLAYLISTS_TAB,
MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB,
MENU_ENUM_LABEL_MAIN_MENU,
MENU_ENUM_LABEL_VALUE_MAIN_MENU,
MENU_ENUM_LABEL_VALUE_SETTINGS,