(svn r2417) - Fix: threads on morphos are apparently unexistent, so implement stubs for them (tokai)

This commit is contained in:
Darkvater
2005-06-06 12:11:44 +00:00
parent 7992e105f9
commit 2bcb41293f
2 changed files with 13 additions and 2 deletions

View File

@@ -2249,7 +2249,7 @@ bool CreateOTTDThread(void *func, void *param)
{
DWORD dwThreadId;
hThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)func, param, 0, &dwThreadId);
SetThreadPriority(hThread, THREAD_PRIORITY_BELOW_NORMAL);
SetThreadPriority(hThread, THREAD_PRIORITY_NORMAL);
return hThread != NULL;
}