Remove hash

This commit is contained in:
twinaphex 2018-02-06 00:03:27 +01:00
parent 76267cf05f
commit 532462702e
2 changed files with 5 additions and 4 deletions

View File

@ -3864,6 +3864,11 @@ static int menu_cbs_init_bind_ok_compare_label(menu_file_list_cbs_t *cbs,
BIND_ACTION_OK(cbs, action_ok_audio_dsp_plugin); BIND_ACTION_OK(cbs, action_ok_audio_dsp_plugin);
return 0; return 0;
} }
else if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_ACCOUNTS_LIST)))
{
BIND_ACTION_OK(cbs, action_ok_push_accounts_list);
return 0;
}
else if (cbs->enum_idx != MSG_UNKNOWN) else if (cbs->enum_idx != MSG_UNKNOWN)
{ {
switch (cbs->enum_idx) switch (cbs->enum_idx)
@ -4292,9 +4297,6 @@ static int menu_cbs_init_bind_ok_compare_label(menu_file_list_cbs_t *cbs,
case MENU_LABEL_REMAP_FILE_LOAD: case MENU_LABEL_REMAP_FILE_LOAD:
BIND_ACTION_OK(cbs, action_ok_remap_file); BIND_ACTION_OK(cbs, action_ok_remap_file);
break; break;
case MENU_LABEL_ACCOUNTS_LIST:
BIND_ACTION_OK(cbs, action_ok_push_accounts_list);
break;
case MENU_LABEL_ACCOUNTS_RETRO_ACHIEVEMENTS: case MENU_LABEL_ACCOUNTS_RETRO_ACHIEVEMENTS:
BIND_ACTION_OK(cbs, action_ok_push_accounts_cheevos_list); BIND_ACTION_OK(cbs, action_ok_push_accounts_cheevos_list);
break; break;

View File

@ -1784,7 +1784,6 @@ enum msg_hash_enums
/* Accounts settings */ /* Accounts settings */
#define MENU_LABEL_ACCOUNTS_RETRO_ACHIEVEMENTS 0xe6b7c16cU #define MENU_LABEL_ACCOUNTS_RETRO_ACHIEVEMENTS 0xe6b7c16cU
#define MENU_LABEL_ACCOUNTS_LIST 0x774c15a0U
#define MENU_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST 0xb4f82700U #define MENU_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST 0xb4f82700U