(svn r6366) -Fix (FS#324): when opening a scenario, the date was set 1920 years into the future.
authorrubidium
Sun, 03 Sep 2006 22:21:12 +0000
changeset 4537 fefcd6142977
parent 4536 f13408cba18f
child 4538 03b675e3ac05
(svn r6366) -Fix (FS#324): when opening a scenario, the date was set 1920 years into the future.
openttd.c
--- a/openttd.c	Sun Sep 03 22:07:28 2006 +0000
+++ b/openttd.c	Sun Sep 03 22:21:12 2006 +0000
@@ -797,7 +797,7 @@
 				}
 			}
 			_generating_world = false;
-			_patches_newgame.starting_year = ORIGINAL_BASE_YEAR + _cur_year;
+			_patches_newgame.starting_year = _cur_year;
 			// delete all stations owned by a player
 			DeleteAllPlayerStations();
 		} else {