mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-12-25 06:00:13 +00:00
[client] overlay: fix race on startup that caused a segfault
Fixes #1065
This commit is contained in:
@@ -656,8 +656,6 @@ MsgBoxHandle app_msgBox(const char * caption, const char * fmt, ...)
|
||||
MsgBoxHandle handle = overlayMsg_show(caption, NULL, NULL, fmt, args);
|
||||
va_end(args);
|
||||
|
||||
core_updateOverlayState();
|
||||
|
||||
return handle;
|
||||
}
|
||||
|
||||
@@ -669,8 +667,6 @@ MsgBoxHandle app_confirmMsgBox(const char * caption,
|
||||
MsgBoxHandle handle = overlayMsg_show(caption, callback, opaque, fmt, args);
|
||||
va_end(args);
|
||||
|
||||
core_updateOverlayState();
|
||||
|
||||
return handle;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user