SCI: fix debugging code of parser, add 0xffe special group into debug support

svn-id: r50956
This commit is contained in:
Martin Kiewitz 2010-07-17 12:06:31 +00:00
parent 83e2aa2360
commit e000d28654
4 changed files with 9 additions and 5 deletions

View file

@ -489,7 +489,7 @@ void Kernel::dissectScript(int scriptNumber, Vocabulary *vocab) {
printf("%04x: ", seeker);
while (seeker < _seeker) {
unsigned char nextitem = script->data [seeker++];
uint16 nextitem = script->data [seeker++];
if (nextitem == 0xFF)
printf("\n%04x: ", seeker);
else if (nextitem >= 0xF0) {