(svn r301) Fix: game options (like drive side) are not taken from the scenario when using 'new game' command
authordominik
Sun, 19 Sep 2004 23:05:09 +0000
changeset 295 f3fe541a0fe4
parent 294 75aee285ca75
child 296 7482b93ce376
(svn r301) Fix: game options (like drive side) are not taken from the scenario when using 'new game' command
ttd.c
--- a/ttd.c	Sun Sep 19 21:44:01 2004 +0000
+++ b/ttd.c	Sun Sep 19 23:05:09 2004 +0000
@@ -735,8 +735,9 @@
 	}
 
 	// Copy in game options
-	_opt_mod_ptr = &_opt;
-	memcpy(&_opt, &_new_opt, sizeof(_opt));
+	// Removed copying of game options when using "new game". --dominik
+	// _opt_mod_ptr = &_opt;
+	// memcpy(&_opt, &_new_opt, sizeof(_opt));
 
 	GfxLoadSprites();