diff options
author | truelight <truelight@openttd.org> | 2005-02-02 18:28:08 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2005-02-02 18:28:08 +0000 |
commit | 8be7a90e65cf0af861c85a4d3de47caec191385a (patch) | |
tree | 8e1dd7fd5de2688cc8d7a7aa84f48e941d7a6981 | |
parent | 3df76452cd62895487bcbe4a048ca53d1e24e0e0 (diff) | |
download | openttd-8be7a90e65cf0af861c85a4d3de47caec191385a.tar.xz |
(svn r1772) -Fix: [ 1114100 ] Dedicated server boots again
-rw-r--r-- | ttd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -530,8 +530,6 @@ static void LoadIntroGame(void) GfxLoadSprites(); LoadStringWidthTable(); - GenerateWorld(1, 6, 6); // Make the viewport initialization happy - // Setup main window InitWindowSystem(); SetupColorsAndInitialWindow(); @@ -720,6 +718,8 @@ int ttd_main(int argc, char* argv[]) InitPlayerRandoms(); + GenerateWorld(1, 6, 6); // Make the viewport initialization happy + #ifdef ENABLE_NETWORK if ((network) && (_network_available)) { if (network_conn != NULL) { |