aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorDenis Kasak2009-06-28 15:28:20 +0000
committerDenis Kasak2009-06-28 15:28:20 +0000
commit948bf2cfcc23dc95fa7b29ff2f6ae7a27af132bd (patch)
tree92aa082f1184408eb5193b1e109a98b4ca0a647a /engines
parentd28bbe51bffe67866b3e1d53188be847c7f533e4 (diff)
downloadscummvm-rg350-948bf2cfcc23dc95fa7b29ff2f6ae7a27af132bd.tar.gz
scummvm-rg350-948bf2cfcc23dc95fa7b29ff2f6ae7a27af132bd.tar.bz2
scummvm-rg350-948bf2cfcc23dc95fa7b29ff2f6ae7a27af132bd.zip
Removed disassembling of the GPL script for the first game location from Draci::init().
svn-id: r41926
Diffstat (limited to 'engines')
-rw-r--r--engines/draci/draci.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/engines/draci/draci.cpp b/engines/draci/draci.cpp
index 1d86b730da..7e73e3d4b2 100644
--- a/engines/draci/draci.cpp
+++ b/engines/draci/draci.cpp
@@ -94,23 +94,6 @@ int DraciEngine::init() {
debugC(3, kDraciGeneralDebugLevel, "0x%02x%c", f->_data[i], (i < 9) ? ' ' : '\n');
}
- // Read in GPL script for the first game location
- debugC(2, kDraciBytecodeDebugLevel, "Disassembling GPL script "
- "for the first game location...");
-
- path = "MIST.DFW";
- ar.openArchive(path);
-
- if(ar.isOpen()) {
- f = ar[3];
- } else {
- debugC(2, kDraciGeneralDebugLevel, "ERROR - Archive not opened");
- return Common::kUnknownError;
- }
-
- // Disassemble GPL script for the first location
- _script->run(f->_data, f->_length);
-
return Common::kNoError;
}