mirror of
https://github.com/Ylianst/MeshAgent
synced 2026-01-03 17:13:16 +00:00
1. Fixed stability issue with message pump
2. Added Hand mouse icon for some UX components of user-consent and privacy bar
This commit is contained in:
@@ -2145,7 +2145,10 @@ void* ILibDuktape_GlobalGenericCallback_Process(int numParms, ...)
|
||||
#ifdef WIN32
|
||||
if (windispatch)
|
||||
{
|
||||
while (windispatch->finished == 0) { SleepEx(INFINITE, TRUE); }
|
||||
while (windispatch->finished == 0)
|
||||
{
|
||||
if (SleepEx(5000, TRUE) == 0) { break; }
|
||||
}
|
||||
retVal = windispatch->retValue;
|
||||
ILibMemory_Free(windispatch);
|
||||
ILibMemory_Free(user);
|
||||
|
||||
Reference in New Issue
Block a user