mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
Build fix
This commit is contained in:
parent
9820b39653
commit
2c6d9482d4
@ -34,9 +34,9 @@ void menu_display_fb_set_dirty(void)
|
||||
{
|
||||
menu_handle_t *menu = menu_driver_get_ptr();
|
||||
if (!menu)
|
||||
return false;
|
||||
return;
|
||||
if (!menu_display_fb_in_use())
|
||||
return false;
|
||||
return;
|
||||
menu->framebuf.dirty = true;
|
||||
}
|
||||
|
||||
@ -44,9 +44,9 @@ void menu_display_fb_unset_dirty(void)
|
||||
{
|
||||
menu_handle_t *menu = menu_driver_get_ptr();
|
||||
if (!menu)
|
||||
return false;
|
||||
return;
|
||||
if (!menu_display_fb_in_use())
|
||||
return false;
|
||||
return;
|
||||
menu->framebuf.dirty = false;
|
||||
}
|
||||
|
||||
|
@ -431,7 +431,6 @@ int menu_entry_iterate(unsigned action)
|
||||
const char *label = NULL;
|
||||
menu_file_list_cbs_t *cbs = NULL;
|
||||
menu_list_t *menu_list = menu_list_get_ptr();
|
||||
menu_handle_t *menu = menu_driver_get_ptr();
|
||||
|
||||
if (!menu_list)
|
||||
return -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user