mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 04:28:37 +00:00
Fix off by one, in the stomach of pajama3
svn-id: r23377
This commit is contained in:
parent
41626a6af3
commit
9269ebe9f5
@ -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();
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user