(Menu) input_postprocess was not used anymore by any menu driver

This commit is contained in:
Jean-André Santoni 2015-02-10 14:52:25 +01:00
parent 3880856c94
commit 274cfe0f9f
8 changed files with 0 additions and 10 deletions

View File

@ -638,7 +638,6 @@ menu_ctx_driver_t menu_ctx_glui = {
NULL,
NULL,
NULL,
NULL,
glui_navigation_clear,
NULL,
NULL,

View File

@ -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

View File

@ -667,7 +667,6 @@ menu_ctx_driver_t menu_ctx_rgui = {
rgui_populate_entries,
NULL,
NULL,
NULL,
rgui_navigation_clear,
NULL,
NULL,

View File

@ -392,7 +392,6 @@ menu_ctx_driver_t menu_ctx_rmenu = {
NULL,
NULL,
NULL,
NULL,
rmenu_entry_iterate,
"rmenu",
};

View File

@ -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,

View File

@ -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,

View File

@ -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;

View File

@ -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 *);