added some preliminary V8 work. Nope, it is not useful at all, and it doesn't mean we will have CMI support in this millenium, so don't hold your breath

svn-id: r6060
This commit is contained in:
Max Horn 2002-12-22 21:58:16 +00:00
parent 3ce3a5be5b
commit df3c41fa24
13 changed files with 1549 additions and 379 deletions

View file

@ -21,6 +21,7 @@
#include "stdafx.h"
#include "scumm.h"
#include "intern.h"
#include "resource.h"
@ -29,7 +30,7 @@ void Scumm_v2::readIndexFile()
int magic = 0;
debug(9, "readIndexFile()");
openRoom(-1);
closeRoom();
openRoom(0);
magic = _fileHandle.readUint16LE();
@ -81,5 +82,5 @@ void Scumm_v2::readIndexFile()
readResTypeList(rtScript, MKID('SCRP'), "script");
readResTypeList(rtSound, MKID('SOUN'), "sound");
openRoom(-1);
closeRoom();
}