From be726e5ec48c3217ffc879e5b544fd545798daaa Mon Sep 17 00:00:00 2001 From: dominik Date: Sun, 19 Sep 2004 23:05:09 +0000 Subject: [PATCH] (svn r301) Fix: game options (like drive side) are not taken from the scenario when using 'new game' command --- ttd.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ttd.c b/ttd.c index 88021d6a83..7043627e8f 100644 --- a/ttd.c +++ b/ttd.c @@ -735,8 +735,9 @@ void StartScenario() } // 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();