mirror of
https://github.com/libretro/RetroArch
synced 2025-03-02 19:13:34 +00:00
(XMB) Fix inverted function names
This commit is contained in:
parent
a372d78e53
commit
57a7e89727
@ -781,7 +781,7 @@ static void xmb_set_title(xmb_handle_t *xmb)
|
||||
}
|
||||
}
|
||||
|
||||
static void xmb_list_open(xmb_handle_t *xmb)
|
||||
static void xmb_list_switch(xmb_handle_t *xmb)
|
||||
{
|
||||
unsigned j;
|
||||
int dir = -1;
|
||||
@ -827,7 +827,7 @@ static void xmb_list_open(xmb_handle_t *xmb)
|
||||
xmb->categories.active.idx_old = menu->categories.selection_ptr;
|
||||
}
|
||||
|
||||
static void xmb_list_switch(xmb_handle_t *xmb)
|
||||
static void xmb_list_open(xmb_handle_t *xmb)
|
||||
{
|
||||
unsigned j;
|
||||
int dir = 0;
|
||||
@ -905,9 +905,9 @@ static void xmb_populate_entries(const char *path,
|
||||
xmb_set_title(xmb);
|
||||
|
||||
if (menu->categories.selection_ptr != xmb->categories.active.idx_old)
|
||||
xmb_list_open(xmb);
|
||||
else
|
||||
xmb_list_switch(xmb);
|
||||
else
|
||||
xmb_list_open(xmb);
|
||||
}
|
||||
|
||||
static void xmb_draw_items(xmb_handle_t *xmb, gl_t *gl,
|
||||
|
Loading…
x
Reference in New Issue
Block a user