mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-02 09:17:01 +01:00
(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
This commit is contained in:
parent
effca9f6ec
commit
b12c6bac57
@ -1042,7 +1042,7 @@ DEF_CONSOLE_HOOK(ConHookRconPW)
|
|||||||
bool NetworkChangeCompanyPassword(byte argc, char *argv[])
|
bool NetworkChangeCompanyPassword(byte argc, char *argv[])
|
||||||
{
|
{
|
||||||
if (argc == 0) {
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1103,7 +1103,7 @@ DEF_CONSOLE_HOOK(ConHookServerAdvertise)
|
|||||||
DEF_CONSOLE_CMD(ConProcServerIP)
|
DEF_CONSOLE_CMD(ConProcServerIP)
|
||||||
{
|
{
|
||||||
if (argc == 0) {
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -110,12 +110,13 @@ void WINAPI CheckForConsoleInput(void)
|
|||||||
void CreateWindowsConsoleThread(void)
|
void CreateWindowsConsoleThread(void)
|
||||||
{
|
{
|
||||||
static char tbuffer[9];
|
static char tbuffer[9];
|
||||||
|
DWORD dwThreadId;
|
||||||
/* Create event to signal when console input is ready */
|
/* Create event to signal when console input is ready */
|
||||||
hEvent = CreateEvent(NULL, false, false, _strtime(tbuffer));
|
hEvent = CreateEvent(NULL, false, false, _strtime(tbuffer));
|
||||||
if (hEvent == NULL)
|
if (hEvent == NULL)
|
||||||
error("Cannot create console event!");
|
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)
|
if (hThread == NULL)
|
||||||
error("Cannot create console thread!");
|
error("Cannot create console thread!");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user