1
0
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:
Bryan Roe
2022-04-20 10:28:01 -07:00
parent edff560369
commit 9f4fc50b3c
4 changed files with 28 additions and 71 deletions

View File

@@ -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);