summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-02-21 13:27:09 +0000
committerrubidium <rubidium@openttd.org>2009-02-21 13:27:09 +0000
commit38d66e69aff6a44a38aed486b6b30769d6611022 (patch)
tree17b96fe5bfc448e2a73b7e9ccedcef93598d4342
parenta9cccbd53adcf5054d75c22d86f3acec4de9db0d (diff)
downloadopenttd-38d66e69aff6a44a38aed486b6b30769d6611022.tar.xz
(svn r15543) -Change: allow the default debug level of 6 for a dedicated server to be overriden by -d (if used after -D).
-rw-r--r--docs/openttd.65
-rw-r--r--src/openttd.cpp1
-rw-r--r--src/video/dedicated_v.cpp2
3 files changed, 5 insertions, 3 deletions
diff --git a/docs/openttd.6 b/docs/openttd.6
index c60dff5e6..86fbc6a6c 100644
--- a/docs/openttd.6
+++ b/docs/openttd.6
@@ -41,7 +41,10 @@ or 1 if omitted
.It Fl d Ar cat=level[, ...]
Set debug verbosity for a specific category
.It Fl D Ar [host][:port]
-Start a dedicated server
+Start a dedicated server. Sets network debug level to 6. If you want to change this, use
+.Fl d
+after
+.Fl D
.It Fl G Ar seed
Seed the pseudo random number generator
.It Fl e
diff --git a/src/openttd.cpp b/src/openttd.cpp
index d2fc2c658..416dfa47d 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -439,6 +439,7 @@ int ttd_main(int argc, char *argv[])
videodriver = strdup("dedicated");
blitter = strdup("null");
dedicated = true;
+ SetDebugString("net=6");
if (mgo.opt != NULL) {
/* Use the existing method for parsing (openttd -n).
* However, we do ignore the #company part. */
diff --git a/src/video/dedicated_v.cpp b/src/video/dedicated_v.cpp
index 21ce2bd1d..7cf9da897 100644
--- a/src/video/dedicated_v.cpp
+++ b/src/video/dedicated_v.cpp
@@ -141,8 +141,6 @@ const char *VideoDriver_Dedicated::Start(const char * const *parm)
_screen.height = _cur_resolution.height;
ScreenSizeChanged();
- SetDebugString("net=6");
-
#if defined(WINCE)
/* WinCE doesn't support console stuff */
#elif defined(WIN32)