mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 00:49:47 +00:00
(iOS) Check if g_view is not NULL before trying to perform this
function
This commit is contained in:
parent
8aaa13dc6c
commit
a1df3ef4a0
@ -294,7 +294,8 @@ static void apple_gfx_ctx_swap_buffers(void *data)
|
||||
#endif
|
||||
|
||||
#else
|
||||
[g_view display];
|
||||
if (g_view)
|
||||
[g_view display];
|
||||
#endif
|
||||
|
||||
g_fast_forward_skips = g_is_syncing ? 0 : 3;
|
||||
|
Loading…
Reference in New Issue
Block a user