From e3f2007da9d81cfa450ca5739110290c0b8bf416 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Tue, 21 Feb 2006 17:48:40 +0000 Subject: [PATCH] (svn r3648) - Fix typo in r3647, don't ask me how it got there s/_/./ --- openttd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openttd.c b/openttd.c index 6dadc1d622..f99882e650 100644 --- a/openttd.c +++ b/openttd.c @@ -349,7 +349,7 @@ int ttd_main(int argc, char* argv[]) case 'f': _dedicated_forks = true; break; case 'n': network = true; - network_conn = mgo_opt; // optional IP parameter, NULL if unset + network_conn = mgo.opt; // optional IP parameter, NULL if unset break; case 'b': _ai.network_client = true; break; case 'r': ParseResolution(resolution, mgo.opt); break;