mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 15:45:19 +00:00
menu_display_update_pending - cleanup
This commit is contained in:
parent
489dc651b5
commit
560d28b188
@ -24,12 +24,13 @@
|
|||||||
bool menu_display_update_pending(void)
|
bool menu_display_update_pending(void)
|
||||||
{
|
{
|
||||||
runloop_t *runloop = rarch_main_get_ptr();
|
runloop_t *runloop = rarch_main_get_ptr();
|
||||||
if (!runloop)
|
if (runloop)
|
||||||
return false;
|
{
|
||||||
if (runloop->frames.video.current.menu.animation.is_active ||
|
if (runloop->frames.video.current.menu.animation.is_active ||
|
||||||
runloop->frames.video.current.menu.label.is_updated ||
|
runloop->frames.video.current.menu.label.is_updated ||
|
||||||
runloop->frames.video.current.menu.framebuf.dirty)
|
runloop->frames.video.current.menu.framebuf.dirty)
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user