From 47b6efd2261a9aae02f4cd2100050db93311d11f Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 19 Jan 2017 21:16:22 +0100 Subject: [PATCH] (XUI) Buildfix --- menu/drivers/xui.cpp | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/menu/drivers/xui.cpp b/menu/drivers/xui.cpp index 8d3274454e..a92d79344c 100644 --- a/menu/drivers/xui.cpp +++ b/menu/drivers/xui.cpp @@ -696,10 +696,10 @@ menu_ctx_driver_t menu_ctx_xui = { xui_frame, xui_init, xui_free, - NULL, - NULL, + NULL, /* context_reset */ + NULL, /* context_destroy */ xui_populate_entries, - NULL, + NULL, /* toggle */ xui_navigation_clear, xui_navigation_set_visible, xui_navigation_set_visible, @@ -709,19 +709,23 @@ menu_ctx_driver_t menu_ctx_xui = { xui_navigation_alphabet, generic_menu_init_list, xui_list_insert, + NULL, /* list_prepend */ xui_list_free, xui_list_clear, - NULL, - NULL, - NULL, - NULL, - NULL, + NULL, /* list_cache */ + NULL, /* list_push */ + NULL, /* list_get_selection */ + NULL, /* list_get_size */ + NULL, /* list_get_entry */ xui_list_set_selection, - NULL, - NULL, + NULL, /* bind_init */ + NULL, /* load_image */ "xui", xui_environ, - NULL, - NULL, - NULL + NULL, /* pointer_tap */ + NULL, /* update_thumbnail_path */ + NULL, /* update_thumbnail_image */ + NULL, /* osk_ptr_at_pos */ + NULL, /* update_savestate_thumbnail_path */ + NULL /* update_savestate_thumbnail_image */ };