diff options
author | James Brown | 2003-01-12 10:22:07 +0000 |
---|---|---|
committer | James Brown | 2003-01-12 10:22:07 +0000 |
commit | bd9f9405cde1d308f55276753c163badd8a69e50 (patch) | |
tree | c03b2fa13aa7123154385297d7cb1c02310f9bc2 | |
parent | a4af93c22ca2a4b570641029624f0b6405feda0c (diff) | |
download | scummvm-rg350-bd9f9405cde1d308f55276753c163badd8a69e50.tar.gz scummvm-rg350-bd9f9405cde1d308f55276753c163badd8a69e50.tar.bz2 scummvm-rg350-bd9f9405cde1d308f55276753c163badd8a69e50.zip |
Well.. it works NOW. (flObject fix part 2 :P)
svn-id: r6422
-rw-r--r-- | scumm/script.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp index fdb034fbc5..998936566c 100644 --- a/scumm/script.cpp +++ b/scumm/script.cpp @@ -731,13 +731,6 @@ void Scumm::killScriptsAndResources() } } - /* Nuke FL objects */ - i = 0; - do { - if (_objs[i].fl_object_index) - nukeResource(rtFlObject, _objs[i].fl_object_index); - } while (++i <= _numObjectsInRoom); - /* Nuke local object names */ if (_newNames) { for (i = 0; i < _numNewNames; i++) { |