Fix off by one, in the stomach of pajama3

svn-id: r23377
This commit is contained in:
Travis Howell 2006-07-06 12:22:33 +00:00
parent 41626a6af3
commit 9269ebe9f5
2 changed files with 2 additions and 0 deletions

View File

@ -1208,6 +1208,7 @@ void ScummEngine_v100he::o100_wizImageOps() {
_wizParams.box.right = pop();
_wizParams.box.top = pop();
_wizParams.box.left = pop();
adjustRect(_wizParams.box);
break;
case 21:
b = pop();

View File

@ -703,6 +703,7 @@ void ScummEngine_v90he::o90_wizImageOps() {
_wizParams.box.right = pop();
_wizParams.box.top = pop();
_wizParams.box.left = pop();
adjustRect(_wizParams.box);
break;
case 40: // HE99+
_wizParams.processFlags |= kWPFPaletteNum;