aboutsummaryrefslogtreecommitdiff
path: root/engines/made/script.h
diff options
context:
space:
mode:
authorFilippos Karapetis2008-05-18 10:57:58 +0000
committerFilippos Karapetis2008-05-18 10:57:58 +0000
commit0c81b70ba35c03b2d5a862eb4afb3f0eae28c9b8 (patch)
treedbc8b98061d6c19ad0b879b332b0470fa2ce90d5 /engines/made/script.h
parent1ea774e95f8ce0927a38aa0e5d467cc6ca82b78b (diff)
downloadscummvm-rg350-0c81b70ba35c03b2d5a862eb4afb3f0eae28c9b8.tar.gz
scummvm-rg350-0c81b70ba35c03b2d5a862eb4afb3f0eae28c9b8.tar.bz2
scummvm-rg350-0c81b70ba35c03b2d5a862eb4afb3f0eae28c9b8.zip
Rewrote the MADE script dumper, hopefully in a more efficient way
svn-id: r32167
Diffstat (limited to 'engines/made/script.h')
-rw-r--r--engines/made/script.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/made/script.h b/engines/made/script.h
index f2c49bd818..0ec43478ab 100644
--- a/engines/made/script.h
+++ b/engines/made/script.h
@@ -63,7 +63,6 @@ public:
ScriptInterpreter(MadeEngine *vm);
~ScriptInterpreter();
void runScript(int16 scriptObjectIndex);
- void dumpScript(int16 scriptObjectIndex);
protected:
MadeEngine *_vm;
@@ -72,6 +71,7 @@ protected:
int16 _runningScriptObjectIndex;
byte *_codeBase, *_codeIp;
bool _terminated;
+ bool _dumpScripts;
ScriptFunctions *_functions;