This commit is contained in:
twinaphex 2016-11-23 15:58:52 +01:00
parent 699a750ebc
commit efba5dddf5

View File

@ -163,17 +163,21 @@ default_fill_title_macro(action_get_title_system_directory, MENU_ENUM_LABE
default_fill_title_macro(action_get_title_assets_directory, MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY)
default_fill_title_macro(action_get_title_extraction_directory, MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY)
default_fill_title_macro(action_get_title_menu, MENU_ENUM_LABEL_VALUE_MENU_SETTINGS)
static int action_get_title_font_path(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
return fill_title(s, "Font", path, len);
}
default_fill_title_macro(action_get_title_font_path, MENU_ENUM_LABEL_VALUE_XMB_FONT)
static int action_get_title_help(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_HELP_LIST), len);
strlcpy(s,
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_HELP_LIST), len);
return 0;
}
static int action_get_title_input_settings(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
strlcpy(s,
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS), len);
return 0;
}
@ -365,15 +369,6 @@ static int action_get_title_group_settings(const char *path, const char *label,
return 0;
}
static int action_get_title_input_settings(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
strlcpy(s,
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS), len);
return 0;
}
static int action_get_title_input_binds_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{