Remove last remaining menu hash

This commit is contained in:
jdgleaver 2020-05-19 17:29:12 +01:00
parent 4b90fcdeac
commit 73b9b5b270
2 changed files with 3 additions and 9 deletions

View File

@ -548,8 +548,10 @@ static int menu_cbs_init_bind_start_compare_label(menu_file_list_cbs_t *cbs)
return -1;
}
}
else
return -1;
return -1;
return 0;
}
static int menu_cbs_init_bind_start_compare_type(menu_file_list_cbs_t *cbs,
@ -588,11 +590,6 @@ static int menu_cbs_init_bind_start_compare_type(menu_file_list_cbs_t *cbs,
{
BIND_ACTION_START(cbs, action_start_core_setting);
}
/* TODO/FIXME - refactor this */
else if (type == MENU_LABEL_SCREEN_RESOLUTION)
{
BIND_ACTION_START(cbs, action_start_video_resolution);
}
else
{
switch (type)

View File

@ -2812,9 +2812,6 @@ enum msg_hash_enums
};
/* Callback strings */
/* TODO/FIXME - get rid of this */
#define MENU_LABEL_SCREEN_RESOLUTION 0x5c9b3a58U
const char *msg_hash_to_str(enum msg_hash_enums msg);