mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-23 11:18:25 +00:00
(Windows) Build fixes
This commit is contained in:
parent
21ff16471a
commit
bcfd2f7667
@ -1336,41 +1336,41 @@ static void xmb_context_reset(void *data)
|
||||
static void xmb_navigation_clear(void *data, bool pending_push)
|
||||
{
|
||||
if (!pending_push)
|
||||
xmb_selection_pointer_changed(data);
|
||||
xmb_selection_pointer_changed((menu_handle_t*)data);
|
||||
}
|
||||
|
||||
static void xmb_navigation_decrement(void *data)
|
||||
{
|
||||
xmb_selection_pointer_changed(data);
|
||||
xmb_selection_pointer_changed((menu_handle_t*)data);
|
||||
}
|
||||
|
||||
static void xmb_navigation_increment(void *data)
|
||||
{
|
||||
xmb_selection_pointer_changed(data);
|
||||
xmb_selection_pointer_changed((menu_handle_t*)data);
|
||||
}
|
||||
|
||||
static void xmb_navigation_set(void *data, bool scroll)
|
||||
{
|
||||
(void)scroll;
|
||||
|
||||
xmb_selection_pointer_changed(data);
|
||||
xmb_selection_pointer_changed((menu_handle_t*)data);
|
||||
}
|
||||
|
||||
static void xmb_navigation_set_last(void *data)
|
||||
{
|
||||
xmb_selection_pointer_changed(data);
|
||||
xmb_selection_pointer_changed((menu_handle_t*)data);
|
||||
}
|
||||
|
||||
static void xmb_navigation_descend_alphabet(void *data, size_t *unused)
|
||||
{
|
||||
(void)unused;
|
||||
xmb_selection_pointer_changed(data);
|
||||
xmb_selection_pointer_changed((menu_handle_t*)data);
|
||||
}
|
||||
|
||||
static void xmb_navigation_ascend_alphabet(void *data, size_t *unused)
|
||||
{
|
||||
(void)unused;
|
||||
xmb_selection_pointer_changed(data);
|
||||
xmb_selection_pointer_changed((menu_handle_t*)data);
|
||||
}
|
||||
|
||||
static void xmb_list_insert(void *data,
|
||||
|
Loading…
Reference in New Issue
Block a user