mirror of
https://github.com/libretro/RetroArch
synced 2025-03-18 04:21:19 +00:00
(XMB/Ozone) Fix display of horizontal playlists
This commit is contained in:
parent
099c06c3c0
commit
28083c7b54
@ -5271,8 +5271,13 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type,
|
|||||||
int ret = 0;
|
int ret = 0;
|
||||||
menu_handle_t *menu = menu_driver_get_ptr();
|
menu_handle_t *menu = menu_driver_get_ptr();
|
||||||
|
|
||||||
if (!menu)
|
/* TODO/FIXME
|
||||||
return false;
|
* We cannot perform a:
|
||||||
|
* if (!menu)
|
||||||
|
* return false;
|
||||||
|
* sanity check here, because menu_displaylist_ctl() can be
|
||||||
|
* called by menu driver init functions - i.e. we can legally
|
||||||
|
* reach this point before the menu has been created... */
|
||||||
|
|
||||||
disp_list.info = info;
|
disp_list.info = info;
|
||||||
disp_list.type = type;
|
disp_list.type = type;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user