aboutsummaryrefslogtreecommitdiff
path: root/engines/made/scriptfuncs.h
diff options
context:
space:
mode:
authorBenjamin Haisch2008-05-20 20:00:10 +0000
committerBenjamin Haisch2008-05-20 20:00:10 +0000
commit828a217a03038673dfbd0f88a80f78832b55d872 (patch)
treeccd7503b1f376dd87e4c1b1051137a384b5405ce /engines/made/scriptfuncs.h
parent11697c0eb24aed6c6997c1d6282b69ed3448b1e9 (diff)
downloadscummvm-rg350-828a217a03038673dfbd0f88a80f78832b55d872.tar.gz
scummvm-rg350-828a217a03038673dfbd0f88a80f78832b55d872.tar.bz2
scummvm-rg350-828a217a03038673dfbd0f88a80f78832b55d872.zip
- Implemented "stand-alone" script dumper/disassembler; it can be enabled by defining DUMP_SCRIPTS in script.h and starting with at least debug level 1.
- Commented which script opcodes and extended functions are actually used or not. svn-id: r32202
Diffstat (limited to 'engines/made/scriptfuncs.h')
-rw-r--r--engines/made/scriptfuncs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/made/scriptfuncs.h b/engines/made/scriptfuncs.h
index 2b0f15c7a2..9879556c3f 100644
--- a/engines/made/scriptfuncs.h
+++ b/engines/made/scriptfuncs.h
@@ -54,6 +54,7 @@ public:
}
void setupExternalsTable();
const char* getFuncName(int index) { return _externalFuncNames[index]; }
+ int getCount() const { return _externalFuncs.size(); }
protected:
MadeEngine *_vm;
Audio::SoundHandle _audioStreamHandle;