mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
Added perform_action to menu_ctx_driver
This commit is contained in:
parent
9c5113d6da
commit
90d646dc45
@ -674,4 +674,5 @@ menu_ctx_driver_t menu_ctx_glui = {
|
||||
NULL,
|
||||
glui_load_wallpaper,
|
||||
"glui",
|
||||
NULL,
|
||||
};
|
||||
|
@ -48,4 +48,5 @@ menu_ctx_driver_t menu_ctx_null = {
|
||||
NULL, // list_set_selection
|
||||
NULL,
|
||||
"null",
|
||||
NULL,
|
||||
};
|
||||
|
@ -654,4 +654,5 @@ menu_ctx_driver_t menu_ctx_rgui = {
|
||||
NULL,
|
||||
NULL,
|
||||
"rgui",
|
||||
NULL,
|
||||
};
|
||||
|
@ -329,4 +329,5 @@ menu_ctx_driver_t menu_ctx_rmenu = {
|
||||
NULL,
|
||||
NULL,
|
||||
"rmenu",
|
||||
NULL,
|
||||
};
|
||||
|
@ -683,4 +683,5 @@ menu_ctx_driver_t menu_ctx_rmenu_xui = {
|
||||
rmenu_xui_list_set_selection,
|
||||
NULL,
|
||||
"rmenu_xui",
|
||||
NULL,
|
||||
};
|
||||
|
@ -1936,4 +1936,5 @@ menu_ctx_driver_t menu_ctx_xmb = {
|
||||
NULL,
|
||||
xmb_load_wallpaper,
|
||||
"xmb",
|
||||
NULL,
|
||||
};
|
||||
|
@ -254,6 +254,7 @@ typedef struct menu_ctx_driver
|
||||
void (*list_set_selection)(file_list_t *list);
|
||||
bool (*load_background)(void *data);
|
||||
const char *ident;
|
||||
bool (*perform_action)(unsigned action);
|
||||
} menu_ctx_driver_t;
|
||||
|
||||
extern menu_ctx_driver_t menu_ctx_rmenu;
|
||||
|
Loading…
x
Reference in New Issue
Block a user