summaryrefslogtreecommitdiff
path: root/ttd.c
diff options
context:
space:
mode:
authordominik <dominik@openttd.org>2004-09-19 23:05:09 +0000
committerdominik <dominik@openttd.org>2004-09-19 23:05:09 +0000
commitbe726e5ec48c3217ffc879e5b544fd545798daaa (patch)
tree70176975a4670d6410592b3de5bb0591c4e141cd /ttd.c
parente0d671ab5f8188cfb396288332c3b302fe43500b (diff)
downloadopenttd-be726e5ec48c3217ffc879e5b544fd545798daaa.tar.xz
(svn r301) Fix: game options (like drive side) are not taken from the scenario when using 'new game' command
Diffstat (limited to 'ttd.c')
-rw-r--r--ttd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ttd.c b/ttd.c
index 88021d6a8..7043627e8 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();