(svn r9995) -Fix (r9962): Don't scroll the map at the start of a new game
authorpeter1138
Thu, 31 May 2007 07:21:33 +0000
changeset 6760 3bd13f9bc39c
parent 6759 cd55b02175dd
child 6761 43c0425f9290
(svn r9995) -Fix (r9962): Don't scroll the map at the start of a new game
src/genworld.cpp
--- a/src/genworld.cpp	Thu May 31 03:35:11 2007 +0000
+++ b/src/genworld.cpp	Thu May 31 07:21:33 2007 +0000
@@ -290,6 +290,6 @@
 
 	/* Centre the view on the map */
 	if (FindWindowById(WC_MAIN_WINDOW, 0) != NULL) {
-		ScrollMainWindowToTile(TileXY(MapSizeX() / 2, MapSizeY() / 2));
+		ScrollMainWindowToTile(TileXY(MapSizeX() / 2, MapSizeY() / 2), true);
 	}
 }