- 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

@ -237,6 +237,10 @@ void Kernel::mapSelectors() {
FIND_SELECTOR(topString);
FIND_SELECTOR(scaleX);
FIND_SELECTOR(scaleY);
#ifdef ENABLE_SCI32
FIND_SELECTOR(data);
#endif
}
void Kernel::dumpScriptObject(char *data, int seeker, int objsize) {