- 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
This commit is contained in:
Matthew Hoops 2009-12-21 14:32:54 +00:00
parent 2a3cbcbc57
commit ef79d7f017
15 changed files with 592 additions and 15 deletions

View file

@ -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];
}