aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/kscripts.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2009-12-21 14:32:54 +0000
committerMatthew Hoops2009-12-21 14:32:54 +0000
commitef79d7f017610e15df5ea6b4c6d6a3b218d4d39f (patch)
tree72c129cb6b65f4286166d265edc88537ad9fb8cf /engines/sci/engine/kscripts.cpp
parent2a3cbcbc57bbb960e678b40692cffce69c88149b (diff)
downloadscummvm-rg350-ef79d7f017610e15df5ea6b4c6d6a3b218d4d39f.tar.gz
scummvm-rg350-ef79d7f017610e15df5ea6b4c6d6a3b218d4d39f.tar.bz2
scummvm-rg350-ef79d7f017610e15df5ea6b4c6d6a3b218d4d39f.zip
SCI32:
- Fully implement kArray and kIsHiRes and mostly implement kString (printf and atoi subfunctions still missing). - Add a dummy SciGui class for SCI32 to bypass the views. Gabriel Knight 1 will now play the Sierra logo music and the main menu music. - Some other minor SCI32 changes. svn-id: r46462
Diffstat (limited to 'engines/sci/engine/kscripts.cpp')
-rw-r--r--engines/sci/engine/kscripts.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/engine/kscripts.cpp b/engines/sci/engine/kscripts.cpp
index 52e66e7fb5..51fe7b887c 100644
--- a/engines/sci/engine/kscripts.cpp
+++ b/engines/sci/engine/kscripts.cpp
@@ -225,7 +225,8 @@ reg_t kDisposeScript(EngineState *s, int argc, reg_t *argv) {
if (argc != 2) {
return s->r_acc;
} else {
- // This exists in the KQ5CD interpreter, but a test case hasn't been found yet
+ // This exists in the KQ5CD and GK1 interpreter. We know it is used when GK1 starts
+ // up, before the Sierra logo.
warning("kDisposeScript called with 2 parameters, still untested");
return argv[1];
}