mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-20 01:43:37 +00:00
Check explicitly for video_poke interface.
This commit is contained in:
parent
12cc1c43d4
commit
aa1275a22d
@ -1722,12 +1722,12 @@ bool menu_iterate(void)
|
||||
input_entry_ret = rgui_iterate(rgui, action);
|
||||
|
||||
// draw last frame for loading messages
|
||||
if (driver.video_poke->set_rgui_texture)
|
||||
if (driver.video_poke && driver.video_poke->set_rgui_texture)
|
||||
driver.video_poke->set_rgui_texture(driver.video_data, menu_framebuf);
|
||||
|
||||
rarch_render_cached_frame();
|
||||
|
||||
if (driver.video_poke->set_rgui_texture)
|
||||
if (driver.video_poke && driver.video_poke->set_rgui_texture)
|
||||
driver.video_poke->set_rgui_texture(driver.video_data, NULL);
|
||||
|
||||
input_process_ret = menu_input_process(NULL, NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user