Commit 5dd29c8a by Nekotekina

Compilation fix (mingw64)

parent 630dd7da
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment