Compilation fix (mingw64)

This commit is contained in:
Nekotekina 2016-06-13 11:21:13 +03:00
parent 630dd7da43
commit 5dd29c8a97

View File

@ -134,7 +134,7 @@ unsigned int __stdcall EnterGenericThread (void* entry)
void* OS_CreateThread(TThreadEntrypoint entry)
{
return (void*)_beginthreadex(0, 0, EnterGenericThread, entry, 0, 0);
return (void*)_beginthreadex(0, 0, EnterGenericThread, (void*)entry, 0, 0);
}
void OS_WaitForAllThreads(void* threads, int numThreads)