(svn r15422) -Fix [FS#2623] (r15383): loading NewGRFs before copying the settings.

This commit is contained in:
rubidium
2009-02-08 23:06:56 +00:00
parent ebd72fa0fd
commit 7b8c13fa5c
2 changed files with 7 additions and 3 deletions

View File

@@ -284,13 +284,13 @@ void GenerateWorld(GenerateWorldMode mode, uint size_x, uint size_y)
/* Set the date before loading sprites as some newgrfs check it */
SetDate(ConvertYMDToDate(_settings_game.game_creation.starting_year, 0, 1));
InitializeGame(_gw.size_x, _gw.size_y, false);
PrepareGenerateWorldProgress();
/* Load the right landscape stuff */
GfxLoadSprites();
LoadStringWidthTable();
InitializeGame(_gw.size_x, _gw.size_y, false);
PrepareGenerateWorldProgress();
/* Re-init the windowing system */
ResetWindowSystem();