mirror of
https://github.com/libretro/RetroArch
synced 2025-04-06 10:21:33 +00:00
(Menu) input_postprocess was not used anymore by any menu driver
This commit is contained in:
parent
3880856c94
commit
274cfe0f9f
@ -638,7 +638,6 @@ menu_ctx_driver_t menu_ctx_glui = {
|
|||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
|
||||||
glui_navigation_clear,
|
glui_navigation_clear,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
|
@ -101,7 +101,6 @@ menu_ctx_driver_t menu_ctx_ios = {
|
|||||||
NULL, // context_destroy
|
NULL, // context_destroy
|
||||||
NULL, // populate_entries
|
NULL, // populate_entries
|
||||||
NULL, // iterate
|
NULL, // iterate
|
||||||
NULL, // input_postprocess
|
|
||||||
NULL, // toggle
|
NULL, // toggle
|
||||||
NULL, // navigation_clear
|
NULL, // navigation_clear
|
||||||
NULL, // navigation_decrement
|
NULL, // navigation_decrement
|
||||||
|
@ -667,7 +667,6 @@ menu_ctx_driver_t menu_ctx_rgui = {
|
|||||||
rgui_populate_entries,
|
rgui_populate_entries,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
|
||||||
rgui_navigation_clear,
|
rgui_navigation_clear,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
|
@ -392,7 +392,6 @@ menu_ctx_driver_t menu_ctx_rmenu = {
|
|||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
|
||||||
rmenu_entry_iterate,
|
rmenu_entry_iterate,
|
||||||
"rmenu",
|
"rmenu",
|
||||||
};
|
};
|
||||||
|
@ -700,7 +700,6 @@ menu_ctx_driver_t menu_ctx_rmenu_xui = {
|
|||||||
NULL,
|
NULL,
|
||||||
rmenu_xui_populate_entries,
|
rmenu_xui_populate_entries,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
|
||||||
rmenu_xui_navigation_clear,
|
rmenu_xui_navigation_clear,
|
||||||
rmenu_xui_navigation_set_visible,
|
rmenu_xui_navigation_set_visible,
|
||||||
rmenu_xui_navigation_set_visible,
|
rmenu_xui_navigation_set_visible,
|
||||||
|
@ -1704,7 +1704,6 @@ menu_ctx_driver_t menu_ctx_xmb = {
|
|||||||
xmb_context_destroy,
|
xmb_context_destroy,
|
||||||
xmb_populate_entries,
|
xmb_populate_entries,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
|
||||||
xmb_toggle,
|
xmb_toggle,
|
||||||
xmb_navigation_clear,
|
xmb_navigation_clear,
|
||||||
xmb_navigation_decrement,
|
xmb_navigation_decrement,
|
||||||
|
@ -432,9 +432,6 @@ int menu_iterate(retro_input_t input,
|
|||||||
if (g_settings.menu.throttle && (g_settings.menu.pause_libretro || !g_extern.content_is_init))
|
if (g_settings.menu.throttle && (g_settings.menu.pause_libretro || !g_extern.content_is_init))
|
||||||
draw_frame();
|
draw_frame();
|
||||||
|
|
||||||
if (driver.menu_ctx && driver.menu_ctx->input_postprocess)
|
|
||||||
driver.menu_ctx->input_postprocess(input, old_input);
|
|
||||||
|
|
||||||
if (ret)
|
if (ret)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
@ -187,7 +187,6 @@ typedef struct menu_ctx_driver
|
|||||||
void (*populate_entries)(void*, const char *, const char *,
|
void (*populate_entries)(void*, const char *, const char *,
|
||||||
unsigned);
|
unsigned);
|
||||||
void (*iterate)(void*, unsigned);
|
void (*iterate)(void*, unsigned);
|
||||||
int (*input_postprocess)(uint64_t, uint64_t);
|
|
||||||
void (*toggle)(bool);
|
void (*toggle)(bool);
|
||||||
void (*navigation_clear)(void *, bool);
|
void (*navigation_clear)(void *, bool);
|
||||||
void (*navigation_decrement)(void *);
|
void (*navigation_decrement)(void *);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user