mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-08 21:33:57 +00:00
[client] app: fix segfault when jitRender + spice display is in use
This commit is contained in:
parent
8b8b580f63
commit
0799910e70
1 changed files with 1 additions and 1 deletions
|
@ -535,7 +535,7 @@ void app_invalidateWindow(bool full)
|
|||
if (full)
|
||||
atomic_store(&g_state.invalidateWindow, true);
|
||||
|
||||
if (g_state.jitRender && g_state.ds->stopWaitFrame)
|
||||
if (g_state.dsInitialized && g_state.jitRender && g_state.ds->stopWaitFrame)
|
||||
g_state.ds->stopWaitFrame();
|
||||
|
||||
lgSignalEvent(g_state.frameEvent);
|
||||
|
|
Loading…
Reference in a new issue