aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/kernel.h
diff options
context:
space:
mode:
authorFilippos Karapetis2010-07-14 00:57:48 +0000
committerFilippos Karapetis2010-07-14 00:57:48 +0000
commit2bfee401d225bb0c456eaf8041f166498b8665c0 (patch)
tree49359a31c471c5f03677d33d34fa9de19a36e172 /engines/sci/engine/kernel.h
parent217af391cdd42b9d97c5836a809fc8585e0ae097 (diff)
downloadscummvm-rg350-2bfee401d225bb0c456eaf8041f166498b8665c0.tar.gz
scummvm-rg350-2bfee401d225bb0c456eaf8041f166498b8665c0.tar.bz2
scummvm-rg350-2bfee401d225bb0c456eaf8041f166498b8665c0.zip
SCI:
- Split SCI2 from SCI2.1 signature checks - Added signature checking for the subops of the SCI2.1 kernel call kList - Added support for calls to kAddToFront and kAddToEnd with 3 parameters (unimplemented code uncovered by the signature checks) - Added a FIXME for a potential incorrect subop (uncovered by the signature checks), which might be related to the crashes in the demo of Torin's Passage svn-id: r50861
Diffstat (limited to 'engines/sci/engine/kernel.h')
-rw-r--r--engines/sci/engine/kernel.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/sci/engine/kernel.h b/engines/sci/engine/kernel.h
index fa206e8053..d63eeaa468 100644
--- a/engines/sci/engine/kernel.h
+++ b/engines/sci/engine/kernel.h
@@ -461,6 +461,9 @@ reg_t kPlayVMD(EngineState *s, int argc, reg_t *argv);
reg_t kIsOnMe(EngineState *s, int argc, reg_t *argv);
reg_t kCD(EngineState *s, int argc, reg_t *argv);
+reg_t kAddBefore(EngineState *s, int argc, reg_t *argv);
+reg_t kMoveToFront(EngineState *s, int argc, reg_t *argv);
+reg_t kMoveToEnd(EngineState *s, int argc, reg_t *argv);
#endif
reg_t kDoSoundInit(EngineState *s, int argc, reg_t *argv);