aboutsummaryrefslogtreecommitdiff
path: root/scumm/script.cpp
diff options
context:
space:
mode:
authorMax Horn2002-12-22 19:14:53 +0000
committerMax Horn2002-12-22 19:14:53 +0000
commit3ce3a5be5bbfd6f438584e5c09e08d26eadb9396 (patch)
tree6b39ba3dfff94290641c614dd0f0620bec182f6c /scumm/script.cpp
parent2e66c05f477f0693867173fdc74cf55fc142687f (diff)
downloadscummvm-rg350-3ce3a5be5bbfd6f438584e5c09e08d26eadb9396.tar.gz
scummvm-rg350-3ce3a5be5bbfd6f438584e5c09e08d26eadb9396.tar.bz2
scummvm-rg350-3ce3a5be5bbfd6f438584e5c09e08d26eadb9396.zip
minor cleanup
svn-id: r6059
Diffstat (limited to 'scumm/script.cpp')
-rw-r--r--scumm/script.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp
index c34f9385a3..ff957955c0 100644
--- a/scumm/script.cpp
+++ b/scumm/script.cpp
@@ -287,28 +287,6 @@ void Scumm::executeScript()
CHECK_HEAP;
}
-void Scumm_v5::executeOpcode(int i)
-{
- OpcodeProcV5 op = _opcodesV5[i].proc;
- (this->*op) ();
-}
-
-const char *Scumm_v5::getOpcodeDesc(int i)
-{
- return _opcodesV5[i].desc;
-}
-
-void Scumm_v6::executeOpcode(int i)
-{
- OpcodeProcV6 op = _opcodesV6[i].proc;
- (this->*op) ();
-}
-
-const char *Scumm_v6::getOpcodeDesc(int i)
-{
- return _opcodesV6[i].desc;
-}
-
byte Scumm::fetchScriptByte()
{
if (*_lastCodePtr + sizeof(MemBlkHeader) != _scriptOrgPointer) {