aboutsummaryrefslogtreecommitdiff
path: root/saga/script.h
diff options
context:
space:
mode:
authorAndrew Kurushin2005-01-22 16:32:30 +0000
committerAndrew Kurushin2005-01-22 16:32:30 +0000
commit8543306e5617cd067c246f5b56a612bffc3fdfe7 (patch)
treef443f5d19ee061a4c1cc6a3512323af7ba52024c /saga/script.h
parent0030e821fe0e417d96387d52ba0c6acf56f93cfe (diff)
downloadscummvm-rg350-8543306e5617cd067c246f5b56a612bffc3fdfe7.tar.gz
scummvm-rg350-8543306e5617cd067c246f5b56a612bffc3fdfe7.tar.bz2
scummvm-rg350-8543306e5617cd067c246f5b56a612bffc3fdfe7.zip
all opcodes revisited
all ITE opcodes supported (now we should go through scriptFunctions) svn-id: r16617
Diffstat (limited to 'saga/script.h')
-rw-r--r--saga/script.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/saga/script.h b/saga/script.h
index ffc3dca69a..04d8f62dd7 100644
--- a/saga/script.h
+++ b/saga/script.h
@@ -173,12 +173,12 @@ enum OpCodes {
opLAnd = 0x44,
opLOr = 0x45,
opLXor = 0x46,
-
//...
opSpeak = 0x53,
opDialogBegin = 0x54,
opDialogEnd = 0x55,
- opReply = 0x56
+ opReply = 0x56,
+ opAnimate = 0x57
};
enum CycleFlags {
@@ -453,7 +453,6 @@ private:
const ScriptFunctionDescription *_scriptFunctionsList;
void setupScriptFuncList(void);
- void scriptError(ScriptThread *thread, const char *format, ...);
int SDebugPrintInstr(ScriptThread *thread);
int SF_putString(SCRIPTFUNC_PARAMS);