fixed some warnings
svn-id: r4204
This commit is contained in:
parent
f412e7bb57
commit
ff376ea8a5
5 changed files with 13 additions and 5 deletions
|
@ -2056,7 +2056,8 @@ void Scumm::o5_roomOps()
|
|||
char buf[256], *s;
|
||||
a = getVarOrDirectByte(0x80);
|
||||
s = buf;
|
||||
while ((*s++ = fetchScriptByte()));
|
||||
while ((*s++ = fetchScriptByte()))
|
||||
;
|
||||
warning("roomops:13 save-string(%d,\"%s\") not implemented", a, buf);
|
||||
break;
|
||||
}
|
||||
|
@ -2064,7 +2065,8 @@ void Scumm::o5_roomOps()
|
|||
char buf[256], *s;
|
||||
a = getVarOrDirectByte(0x80);
|
||||
s = buf;
|
||||
while ((*s++ = fetchScriptByte()));
|
||||
while ((*s++ = fetchScriptByte()))
|
||||
;
|
||||
warning("roomops:14 load-string(%d,\"%s\") not implemented", a, buf);
|
||||
break;
|
||||
case 15: /* palmanip? */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue