diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index fbf7768329..f7a31c029d 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -1069,7 +1069,8 @@ static int action_ok_file_load_with_detect_core(const char *path, type = 0; label = NULL; - return file_load_with_detect_core_wrapper(MSG_UNKNOWN, + return file_load_with_detect_core_wrapper( + MSG_UNKNOWN, MSG_UNKNOWN, idx, entry_idx, path, label, type, false); } @@ -1265,33 +1266,24 @@ error: return menu_cbs_exit(); } -static int action_ok_set_path_videofilter(const char *path, - const char *label, unsigned type, size_t idx, size_t entry_idx) -{ - return generic_action_ok(path, label, type, idx, entry_idx, - ACTION_OK_SET_PATH_VIDEO_FILTER, MSG_UNKNOWN); +#define default_action_ok_set(funcname, _id, _flush) \ +static int (funcname)(const char *path, const char *label, unsigned type, size_t idx, size_t entry_idx) \ +{ \ + return generic_action_ok(path, label, type, idx, entry_idx, _id, _flush); \ } -static int action_ok_set_path_audiofilter(const char *path, - const char *label, unsigned type, size_t idx, size_t entry_idx) -{ - return generic_action_ok(path, label, type, idx, entry_idx, - ACTION_OK_SET_PATH_AUDIO_FILTER, MSG_UNKNOWN); -} - -static int action_ok_set_path_overlay(const char *path, - const char *label, unsigned type, size_t idx, size_t entry_idx) -{ - return generic_action_ok(path, label, type, idx, entry_idx, - ACTION_OK_SET_PATH_OVERLAY, MSG_UNKNOWN); -} - -static int action_ok_set_path(const char *path, - const char *label, unsigned type, size_t idx, size_t entry_idx) -{ - return generic_action_ok(path, label, type, idx, entry_idx, - ACTION_OK_SET_PATH, MSG_UNKNOWN); -} +default_action_ok_set(action_ok_set_path_audiofilter, ACTION_OK_SET_PATH_VIDEO_FILTER, MSG_UNKNOWN) +default_action_ok_set(action_ok_set_path_videofilter, ACTION_OK_SET_PATH_AUDIO_FILTER, MSG_UNKNOWN) +default_action_ok_set(action_ok_set_path_overlay, ACTION_OK_SET_PATH_OVERLAY, MSG_UNKNOWN) +default_action_ok_set(action_ok_set_path, ACTION_OK_SET_PATH, MSG_UNKNOWN) +default_action_ok_set(action_ok_load_core, ACTION_OK_LOAD_CORE, MSG_UNKNOWN) +default_action_ok_set(action_ok_config_load, ACTION_OK_LOAD_CONFIG_FILE, MSG_UNKNOWN) +default_action_ok_set(action_ok_disk_image_append, ACTION_OK_APPEND_DISK_IMAGE, MSG_UNKNOWN) +default_action_ok_set(action_ok_cheat_file_load, ACTION_OK_LOAD_CHEAT_FILE, MENU_ENUM_LABEL_CORE_CHEAT_OPTIONS) +default_action_ok_set(action_ok_record_configfile_load, ACTION_OK_LOAD_RECORD_CONFIGFILE, MENU_ENUM_LABEL_RECORDING_SETTINGS) +default_action_ok_set(action_ok_remap_file_load, ACTION_OK_LOAD_REMAPPING_FILE, MENU_ENUM_LABEL_CORE_INPUT_REMAPPING_OPTIONS ) +default_action_ok_set(action_ok_shader_preset_load, ACTION_OK_LOAD_PRESET , MENU_ENUM_LABEL_SHADER_OPTIONS) +default_action_ok_set(action_ok_shader_pass_load, ACTION_OK_LOAD_SHADER_PASS, MENU_ENUM_LABEL_SHADER_OPTIONS) static int action_ok_file_load(const char *path, const char *label, unsigned type, size_t idx, size_t entry_idx) @@ -1781,65 +1773,6 @@ static int action_ok_menu_wallpaper_load(const char *path, ACTION_OK_LOAD_WALLPAPER, MSG_UNKNOWN); } -static int action_ok_load_core(const char *path, - const char *label, unsigned type, size_t idx, size_t entry_idx) -{ - return generic_action_ok(path, label, type, idx, entry_idx, - ACTION_OK_LOAD_CORE, MSG_UNKNOWN); -} - -static int action_ok_config_load(const char *path, - const char *label, unsigned type, size_t idx, size_t entry_idx) -{ - return generic_action_ok(path, label, type, idx, entry_idx, - ACTION_OK_LOAD_CONFIG_FILE, MSG_UNKNOWN); -} - -static int action_ok_disk_image_append(const char *path, - const char *label, unsigned type, size_t idx, size_t entry_idx) -{ - return generic_action_ok(path, label, type, idx, entry_idx, - ACTION_OK_APPEND_DISK_IMAGE, MSG_UNKNOWN); -} - -static int action_ok_cheat_file_load(const char *path, - const char *label, unsigned type, size_t idx, size_t entry_idx) -{ - return generic_action_ok(path, label, type, idx, entry_idx, - ACTION_OK_LOAD_CHEAT_FILE, - MENU_ENUM_LABEL_CORE_CHEAT_OPTIONS); -} - -static int action_ok_record_configfile_load(const char *path, - const char *label, unsigned type, size_t idx, size_t entry_idx) -{ - return generic_action_ok(path, label, type, idx, entry_idx, - ACTION_OK_LOAD_RECORD_CONFIGFILE, - MENU_ENUM_LABEL_RECORDING_SETTINGS); -} - -static int action_ok_remap_file_load(const char *path, - const char *label, unsigned type, size_t idx, size_t entry_idx) -{ - return generic_action_ok(path, label, type, idx, entry_idx, - ACTION_OK_LOAD_REMAPPING_FILE, - MENU_ENUM_LABEL_CORE_INPUT_REMAPPING_OPTIONS); -} - -static int action_ok_shader_preset_load(const char *path, - const char *label, unsigned type, size_t idx, size_t entry_idx) -{ - return generic_action_ok(path, label, type, idx, entry_idx, - ACTION_OK_LOAD_PRESET, MENU_ENUM_LABEL_SHADER_OPTIONS); -} - -static int action_ok_shader_pass_load(const char *path, - const char *label, unsigned type, size_t idx, size_t entry_idx) -{ - return generic_action_ok(path, label, type, idx, entry_idx, - ACTION_OK_LOAD_SHADER_PASS, MENU_ENUM_LABEL_SHADER_OPTIONS); -} - int generic_action_ok_help(const char *path, const char *label, unsigned type, size_t idx, size_t entry_idx, enum msg_hash_enums id, enum menu_dialog_type id2)