1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-25 23:49:09 +00:00

(svn r2811) Fix typos in r2810

This commit is contained in:
tron
2005-08-05 20:18:08 +00:00
parent c78af95d1d
commit a8e53be6b9

View File

@@ -17,7 +17,7 @@ void* OTTDJoinThread(Thread*) { return NULL; }
struct Thread {
TID thread;
ThradFunc func;
ThreadFunc func;
void* arg;
void* ret;
};
@@ -98,7 +98,7 @@ void* OTTDJoinThread(Thread* t)
struct Thread {
HANDLE thread;
ThradFunc func;
ThreadFunc func;
void* arg;
void* ret;
};
@@ -119,7 +119,7 @@ Thread* OTTDCreateThread(ThreadFunc function, void* arg)
t->func = function;
t->arg = arg;
t->thread = CreateThread(NULL, 0, Proxy, arg, 0, &dwThreadId);
t->thread = CreateThread(NULL, 0, Proxy, t, 0, &dwThreadId);
if (t->thread != NULL) {
return t;