diff options
author | truelight <truelight@openttd.org> | 2005-01-15 20:10:44 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2005-01-15 20:10:44 +0000 |
commit | b454e12bc5ba76e8ac111513757f4c37bb585211 (patch) | |
tree | 92639682cfa9e6c68a14befa0d308b72660b9fd0 | |
parent | 27929d129b8060873f5f55a4e703d60b3af65d55 (diff) | |
download | openttd-b454e12bc5ba76e8ac111513757f4c37bb585211.tar.xz |
(svn r1528) -Fix: forgot to init a variable
-rw-r--r-- | ttd.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -567,6 +567,8 @@ int ttd_main(int argc, char* argv[]) _dedicated_forks = false; _dedicated_enabled = false; + _redirect_console_to_client = 0; + // The last param of the following function means this: // a letter means: it accepts that param (e.g.: -h) // a ':' behind it means: it need a param (e.g.: -m<driver>) |