mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-18 17:04:34 +00:00
Rename menu_entries_push to menu_entries_prepend
This commit is contained in:
parent
a58c77113f
commit
01c82a09f0
@ -2345,8 +2345,8 @@ static int menu_displaylist_parse_add_content_list(
|
||||
MENU_SETTING_ACTION, 0, 0);
|
||||
#endif
|
||||
|
||||
#if 0
|
||||
menu_entries_push(info->list,
|
||||
#if 1
|
||||
menu_entries_prepend(info->list,
|
||||
"Test",
|
||||
"new_test",
|
||||
MENU_SETTING_ACTION, 0, 0);
|
||||
|
@ -536,7 +536,7 @@ void menu_entries_add(file_list_t *list, const char *path, const char *label,
|
||||
menu_cbs_init(list, cbs, path, label, type, idx);
|
||||
}
|
||||
|
||||
void menu_entries_push(file_list_t *list, const char *path, const char *label,
|
||||
void menu_entries_prepend(file_list_t *list, const char *path, const char *label,
|
||||
unsigned type, size_t directory_ptr, size_t entry_idx)
|
||||
{
|
||||
menu_ctx_list_t list_info;
|
||||
|
@ -174,7 +174,7 @@ void menu_entries_set_alt_at_offset(file_list_t *list, size_t idx,
|
||||
|
||||
rarch_setting_t *menu_entries_get_setting(uint32_t i);
|
||||
|
||||
void menu_entries_push(file_list_t *list, const char *path, const char *label,
|
||||
void menu_entries_prepend(file_list_t *list, const char *path, const char *label,
|
||||
unsigned type, size_t directory_ptr, size_t entry_idx);
|
||||
|
||||
bool menu_entries_ctl(enum menu_entries_ctl_state state, void *data);
|
||||
|
Loading…
x
Reference in New Issue
Block a user