summaryrefslogtreecommitdiff
path: root/dedicated.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2005-05-04 19:09:25 +0000
committerDarkvater <darkvater@openttd.org>2005-05-04 19:09:25 +0000
commitb12c6bac5787b493b1c5a3a87556a39d921bc2f9 (patch)
treecb53d9b31749571fad59eb9a55def4eeaf78dff0 /dedicated.c
parenteffca9f6ec77ea88689b1f912efe307aef22f874 (diff)
downloadopenttd-b12c6bac5787b493b1c5a3a87556a39d921bc2f9.tar.xz
(svn r2266) - Feature: it is now possible to start a dedicated server on Win98/95, for the few sadistic geeks that really want to do this (thanks for testing Hackykid). Also fix up another glitch in console output
Diffstat (limited to 'dedicated.c')
-rw-r--r--dedicated.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dedicated.c b/dedicated.c
index 612f6bd1d..c2ee4f511 100644
--- a/dedicated.c
+++ b/dedicated.c
@@ -110,12 +110,13 @@ void WINAPI CheckForConsoleInput(void)
void CreateWindowsConsoleThread(void)
{
static char tbuffer[9];
+ DWORD dwThreadId;
/* Create event to signal when console input is ready */
hEvent = CreateEvent(NULL, false, false, _strtime(tbuffer));
if (hEvent == NULL)
error("Cannot create console event!");
- hThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)CheckForConsoleInput, 0, 0, NULL);
+ hThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)CheckForConsoleInput, NULL, 0, &dwThreadId);
if (hThread == NULL)
error("Cannot create console thread!");