diff options
author | rubidium <rubidium@openttd.org> | 2010-11-19 10:58:38 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-11-19 10:58:38 +0000 |
commit | 611a9f200785885a29447f4fd138220283a8dcd0 (patch) | |
tree | 393309c3223e2df2647bcbff0a763e489d6ead31 /src | |
parent | ab44c91778618147efd12f62fd3b74df872e599d (diff) | |
download | openttd-611a9f200785885a29447f4fd138220283a8dcd0.tar.xz |
(svn r21253) -Change: mention the OpenTTD version on the console/logs when starting an OpenTTD dedicated server like we mention it in the title bar for the GUI version
Diffstat (limited to 'src')
-rw-r--r-- | src/openttd.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp index 95309b23c..73c3b2e5b 100644 --- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -594,6 +594,7 @@ int ttd_main(int argc, char *argv[]) _cur_resolution.height = ClampU(_cur_resolution.height, 1, UINT16_MAX); #if defined(ENABLE_NETWORK) + if (dedicated) DEBUG(net, 0, "Starting dedicated version %s", _openttd_revision); if (dedicated_host) { _network_bind_list.Clear(); *_network_bind_list.Append() = strdup(dedicated_host); |