diff options
author | Max Horn | 2003-07-28 16:56:52 +0000 |
---|---|---|
committer | Max Horn | 2003-07-28 16:56:52 +0000 |
commit | 5c75ec90e7f84c8c1d6696cede2af08720d30276 (patch) | |
tree | 184c66abbc3e986bd8530407cc06eb3463c8169a /scumm | |
parent | 7ea67048c1305bcf32a48fbe586e1bebf222a2b7 (diff) | |
download | scummvm-rg350-5c75ec90e7f84c8c1d6696cede2af08720d30276.tar.gz scummvm-rg350-5c75ec90e7f84c8c1d6696cede2af08720d30276.tar.bz2 scummvm-rg350-5c75ec90e7f84c8c1d6696cede2af08720d30276.zip |
no need to zero these variables twice
svn-id: r9254
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scummvm.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index dc74da8d3d..e6572f3497 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -551,12 +551,6 @@ Scumm::Scumm (GameDetector *detector, OSystem *syst) _use_adlib = detector->_use_adlib; _language = detector->_language; memset(&res, 0, sizeof(res)); - _allocatedSize = 0; - _roomResource = 0; - _lastLoadedRoom = 0; - _expire_counter = 0; - _dynamicRoomOffsets = 0; - _shakeEnabled = false; _hexdumpScripts = false; _showStack = false; |