diff options
author | dominik <dominik@openttd.org> | 2004-09-19 23:05:09 +0000 |
---|---|---|
committer | dominik <dominik@openttd.org> | 2004-09-19 23:05:09 +0000 |
commit | be726e5ec48c3217ffc879e5b544fd545798daaa (patch) | |
tree | 70176975a4670d6410592b3de5bb0591c4e141cd | |
parent | e0d671ab5f8188cfb396288332c3b302fe43500b (diff) | |
download | openttd-be726e5ec48c3217ffc879e5b544fd545798daaa.tar.xz |
(svn r301) Fix: game options (like drive side) are not taken from the scenario when using 'new game' command
-rw-r--r-- | ttd.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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(); |