diff options
-rw-r--r-- | console_cmds.c | 4 | ||||
-rw-r--r-- | dedicated.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/console_cmds.c b/console_cmds.c index 1bc307a54..7f6a8889f 100644 --- a/console_cmds.c +++ b/console_cmds.c @@ -1042,7 +1042,7 @@ DEF_CONSOLE_HOOK(ConHookRconPW) bool NetworkChangeCompanyPassword(byte argc, char *argv[]) { if (argc == 0) { - IConsolePrintF(_iconsole_color_warning, "Current value of 'company_pw': %s", _network_player_info[_local_player].password); + IConsolePrintF(_iconsole_color_warning, "Current value for 'company_pw': %s", _network_player_info[_local_player].password); return true; } @@ -1103,7 +1103,7 @@ DEF_CONSOLE_HOOK(ConHookServerAdvertise) DEF_CONSOLE_CMD(ConProcServerIP) { if (argc == 0) { - IConsolePrintF(_iconsole_color_warning, "Current value of 'server_ip': %s", inet_ntoa(*(struct in_addr *)&_network_server_bind_ip)); + IConsolePrintF(_iconsole_color_warning, "Current value for 'server_ip': %s", inet_ntoa(*(struct in_addr *)&_network_server_bind_ip)); return true; } 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!"); |