mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +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,
|
||||
glui_navigation_clear,
|
||||
NULL,
|
||||
NULL,
|
||||
|
@ -101,7 +101,6 @@ menu_ctx_driver_t menu_ctx_ios = {
|
||||
NULL, // context_destroy
|
||||
NULL, // populate_entries
|
||||
NULL, // iterate
|
||||
NULL, // input_postprocess
|
||||
NULL, // toggle
|
||||
NULL, // navigation_clear
|
||||
NULL, // navigation_decrement
|
||||
|
@ -667,7 +667,6 @@ menu_ctx_driver_t menu_ctx_rgui = {
|
||||
rgui_populate_entries,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
rgui_navigation_clear,
|
||||
NULL,
|
||||
NULL,
|
||||
|
@ -392,7 +392,6 @@ menu_ctx_driver_t menu_ctx_rmenu = {
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
rmenu_entry_iterate,
|
||||
"rmenu",
|
||||
};
|
||||
|
@ -700,7 +700,6 @@ menu_ctx_driver_t menu_ctx_rmenu_xui = {
|
||||
NULL,
|
||||
rmenu_xui_populate_entries,
|
||||
NULL,
|
||||
NULL,
|
||||
rmenu_xui_navigation_clear,
|
||||
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_populate_entries,
|
||||
NULL,
|
||||
NULL,
|
||||
xmb_toggle,
|
||||
xmb_navigation_clear,
|
||||
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))
|
||||
draw_frame();
|
||||
|
||||
if (driver.menu_ctx && driver.menu_ctx->input_postprocess)
|
||||
driver.menu_ctx->input_postprocess(input, old_input);
|
||||
|
||||
if (ret)
|
||||
return -1;
|
||||
|
||||
|
@ -187,7 +187,6 @@ typedef struct menu_ctx_driver
|
||||
void (*populate_entries)(void*, const char *, const char *,
|
||||
unsigned);
|
||||
void (*iterate)(void*, unsigned);
|
||||
int (*input_postprocess)(uint64_t, uint64_t);
|
||||
void (*toggle)(bool);
|
||||
void (*navigation_clear)(void *, bool);
|
||||
void (*navigation_decrement)(void *);
|
||||
|
Loading…
x
Reference in New Issue
Block a user