mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
(GL Core) Buildfix for video context drivers that dont
implement this callback
This commit is contained in:
parent
156d3629e6
commit
9b8c596057
@ -1949,7 +1949,8 @@ static bool gl_core_frame(void *data, const void *frame,
|
||||
font_driver_render_msg(gl, msg, NULL, NULL);
|
||||
}
|
||||
|
||||
gl->ctx_driver->update_window_title(context_data);
|
||||
if (gl->ctx_driver->update_window_title)
|
||||
gl->ctx_driver->update_window_title(context_data);
|
||||
|
||||
if (gl->readback_buffer_screenshot)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user