Remove hashes
This commit is contained in:
parent
942c61cb58
commit
76267cf05f
|
@ -778,6 +778,10 @@ static struct cbs_deferred_lbl_callback cbs_deferred_lbl_list[] = {
|
||||||
{
|
{
|
||||||
MENU_ENUM_LABEL_INPUT_OVERLAY,
|
MENU_ENUM_LABEL_INPUT_OVERLAY,
|
||||||
deferred_push_input_overlay
|
deferred_push_input_overlay
|
||||||
|
},
|
||||||
|
{
|
||||||
|
MENU_ENUM_LABEL_AUDIO_DSP_PLUGIN,
|
||||||
|
deferred_push_audio_dsp_plugin
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1327,9 +1331,6 @@ static int menu_cbs_init_bind_deferred_push_compare_label(
|
||||||
case MENU_LABEL_CONFIGURATIONS:
|
case MENU_LABEL_CONFIGURATIONS:
|
||||||
BIND_ACTION_DEFERRED_PUSH(cbs, deferred_push_configurations);
|
BIND_ACTION_DEFERRED_PUSH(cbs, deferred_push_configurations);
|
||||||
break;
|
break;
|
||||||
case MENU_LABEL_AUDIO_DSP_PLUGIN:
|
|
||||||
BIND_ACTION_DEFERRED_PUSH(cbs, deferred_push_audio_dsp_plugin);
|
|
||||||
break;
|
|
||||||
case MENU_LABEL_CONTENT_HISTORY_PATH:
|
case MENU_LABEL_CONTENT_HISTORY_PATH:
|
||||||
BIND_ACTION_DEFERRED_PUSH(cbs, deferred_push_content_history_path);
|
BIND_ACTION_DEFERRED_PUSH(cbs, deferred_push_content_history_path);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -3859,6 +3859,11 @@ static int menu_cbs_init_bind_ok_compare_label(menu_file_list_cbs_t *cbs,
|
||||||
BIND_ACTION_OK(cbs, action_ok_cheat_file);
|
BIND_ACTION_OK(cbs, action_ok_cheat_file);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
else if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_AUDIO_DSP_PLUGIN)))
|
||||||
|
{
|
||||||
|
BIND_ACTION_OK(cbs, action_ok_audio_dsp_plugin);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
else if (cbs->enum_idx != MSG_UNKNOWN)
|
else if (cbs->enum_idx != MSG_UNKNOWN)
|
||||||
{
|
{
|
||||||
switch (cbs->enum_idx)
|
switch (cbs->enum_idx)
|
||||||
|
@ -4284,9 +4289,6 @@ static int menu_cbs_init_bind_ok_compare_label(menu_file_list_cbs_t *cbs,
|
||||||
{
|
{
|
||||||
switch (hash)
|
switch (hash)
|
||||||
{
|
{
|
||||||
case MENU_LABEL_AUDIO_DSP_PLUGIN:
|
|
||||||
BIND_ACTION_OK(cbs, action_ok_audio_dsp_plugin);
|
|
||||||
break;
|
|
||||||
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;
|
||||||
|
|
|
@ -536,6 +536,10 @@ static struct cbs_title_lbl_callback cbs_title_lbl_list[] = {
|
||||||
{
|
{
|
||||||
MENU_ENUM_LABEL_INPUT_OVERLAY,
|
MENU_ENUM_LABEL_INPUT_OVERLAY,
|
||||||
action_get_title_overlay
|
action_get_title_overlay
|
||||||
|
},
|
||||||
|
{
|
||||||
|
MENU_ENUM_LABEL_AUDIO_DSP_PLUGIN,
|
||||||
|
action_get_title_audio_filter
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1074,9 +1078,6 @@ static int menu_cbs_init_bind_title_compare_label(menu_file_list_cbs_t *cbs,
|
||||||
case MENU_LABEL_DEFERRED_ACCOUNTS_LIST:
|
case MENU_LABEL_DEFERRED_ACCOUNTS_LIST:
|
||||||
BIND_ACTION_GET_TITLE(cbs, action_get_user_accounts_list);
|
BIND_ACTION_GET_TITLE(cbs, action_get_user_accounts_list);
|
||||||
break;
|
break;
|
||||||
case MENU_LABEL_AUDIO_DSP_PLUGIN:
|
|
||||||
BIND_ACTION_GET_TITLE(cbs, action_get_title_audio_filter);
|
|
||||||
break;
|
|
||||||
case MENU_LABEL_LIBRETRO_DIR_PATH:
|
case MENU_LABEL_LIBRETRO_DIR_PATH:
|
||||||
BIND_ACTION_GET_TITLE(cbs, action_get_title_core_directory);
|
BIND_ACTION_GET_TITLE(cbs, action_get_title_core_directory);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -1868,8 +1868,6 @@ enum msg_hash_enums
|
||||||
#define MENU_LABEL_INPUT_DRIVER_LINUXRAW 0xc33c6b9fU
|
#define MENU_LABEL_INPUT_DRIVER_LINUXRAW 0xc33c6b9fU
|
||||||
#define MENU_LABEL_INPUT_DRIVER_UDEV 0x7c9eeeb9U
|
#define MENU_LABEL_INPUT_DRIVER_UDEV 0x7c9eeeb9U
|
||||||
|
|
||||||
#define MENU_LABEL_AUDIO_DSP_PLUGIN 0x4a69572bU
|
|
||||||
|
|
||||||
#define MENU_LABEL_AUDIO_RESAMPLER_DRIVER_SINC 0x7c9dec52U
|
#define MENU_LABEL_AUDIO_RESAMPLER_DRIVER_SINC 0x7c9dec52U
|
||||||
#define MENU_LABEL_AUDIO_RESAMPLER_DRIVER_CC 0x0059732bU
|
#define MENU_LABEL_AUDIO_RESAMPLER_DRIVER_CC 0x0059732bU
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue