Rename MENU_ACTION_SELECT to MENU_ACTION_INFO

This commit is contained in:
twinaphex 2015-06-01 07:21:00 +02:00
parent 494b78e6ad
commit 9437867a8a
3 changed files with 3 additions and 3 deletions

View File

@ -494,7 +494,7 @@ int menu_entry_action(menu_entry_t *entry, unsigned i, enum menu_action action)
if (cbs && cbs->action_right)
ret = cbs->action_right(entry->type, entry->label, false);
break;
case MENU_ACTION_SELECT:
case MENU_ACTION_INFO:
if (cbs && cbs->action_info)
ret = cbs->action_info(entry->type, entry->label);
break;

View File

@ -1018,7 +1018,7 @@ unsigned menu_input_frame(retro_input_t input, retro_input_t trigger_input)
else if (trigger_input & (1ULL << settings->menu_default_btn))
ret = MENU_ACTION_START;
else if (trigger_input & (1ULL << settings->menu_info_btn))
ret = MENU_ACTION_SELECT;
ret = MENU_ACTION_INFO;
else if (trigger_input & (1ULL << RARCH_MENU_TOGGLE))
ret = MENU_ACTION_TOGGLE;
else

View File

@ -35,7 +35,7 @@ typedef enum menu_action
MENU_ACTION_SCAN,
MENU_ACTION_CANCEL,
MENU_ACTION_REFRESH,
MENU_ACTION_SELECT,
MENU_ACTION_INFO,
MENU_ACTION_START,
MENU_ACTION_MESSAGE,
MENU_ACTION_SCROLL_DOWN,