diff --git a/menu/cbs/menu_cbs_deferred_push.c b/menu/cbs/menu_cbs_deferred_push.c index 2858c37df3..1363f35300 100644 --- a/menu/cbs/menu_cbs_deferred_push.c +++ b/menu/cbs/menu_cbs_deferred_push.c @@ -782,6 +782,10 @@ static struct cbs_deferred_lbl_callback cbs_deferred_lbl_list[] = { { MENU_ENUM_LABEL_AUDIO_DSP_PLUGIN, deferred_push_audio_dsp_plugin + }, + { + MENU_ENUM_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST, + deferred_push_detect_core_list } }; @@ -1334,9 +1338,6 @@ static int menu_cbs_init_bind_deferred_push_compare_label( case MENU_LABEL_CONTENT_HISTORY_PATH: BIND_ACTION_DEFERRED_PUSH(cbs, deferred_push_content_history_path); break; - case MENU_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST: - BIND_ACTION_DEFERRED_PUSH(cbs, deferred_push_detect_core_list); - break; default: return -1; } diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index e021aff4f0..7ad19c177b 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -3869,6 +3869,11 @@ static int menu_cbs_init_bind_ok_compare_label(menu_file_list_cbs_t *cbs, BIND_ACTION_OK(cbs, action_ok_push_accounts_list); return 0; } + else if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST))) + { + BIND_ACTION_OK(cbs, action_ok_push_downloads_dir); + return 0; + } else if (cbs->enum_idx != MSG_UNKNOWN) { switch (cbs->enum_idx) @@ -4300,9 +4305,6 @@ static int menu_cbs_init_bind_ok_compare_label(menu_file_list_cbs_t *cbs, case MENU_LABEL_ACCOUNTS_RETRO_ACHIEVEMENTS: BIND_ACTION_OK(cbs, action_ok_push_accounts_cheevos_list); break; - case MENU_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST: - BIND_ACTION_OK(cbs, action_ok_push_downloads_dir); - break; case MENU_LABEL_DETECT_CORE_LIST_OK: BIND_ACTION_OK(cbs, action_ok_file_load_detect_core); break; diff --git a/msg_hash.h b/msg_hash.h index da7b157736..c1a41e85bd 100644 --- a/msg_hash.h +++ b/msg_hash.h @@ -1782,11 +1782,8 @@ enum msg_hash_enums #define MENU_LABEL_DEFERRED_BROWSE_URL_START 0xcef58296U /* Accounts settings */ - #define MENU_LABEL_ACCOUNTS_RETRO_ACHIEVEMENTS 0xe6b7c16cU -#define MENU_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST 0xb4f82700U - /* Information settings */ #define MENU_LABEL_SCREEN_RESOLUTION 0x5c9b3a58U