[Scummvm-cvs-logs] SF.net SVN: scummvm: [23377] scummvm/trunk/engines/scumm/he

kirben at users.sourceforge.net kirben at users.sourceforge.net
Thu Jul 6 14:22:38 CEST 2006


Revision: 23377
Author:   kirben
Date:     2006-07-06 05:22:33 -0700 (Thu, 06 Jul 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=23377&view=rev

Log Message:
-----------
Fix off by one, in the stomach of pajama3

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/he/script_v100he.cpp
    scummvm/trunk/engines/scumm/he/script_v90he.cpp
Modified: scummvm/trunk/engines/scumm/he/script_v100he.cpp
===================================================================
--- scummvm/trunk/engines/scumm/he/script_v100he.cpp	2006-07-06 11:40:50 UTC (rev 23376)
+++ scummvm/trunk/engines/scumm/he/script_v100he.cpp	2006-07-06 12:22:33 UTC (rev 23377)
@@ -1208,6 +1208,7 @@
 		_wizParams.box.right = pop();
 		_wizParams.box.top = pop();
 		_wizParams.box.left = pop();
+		adjustRect(_wizParams.box);
 		break;
 	case 21:
 		b = pop();

Modified: scummvm/trunk/engines/scumm/he/script_v90he.cpp
===================================================================
--- scummvm/trunk/engines/scumm/he/script_v90he.cpp	2006-07-06 11:40:50 UTC (rev 23376)
+++ scummvm/trunk/engines/scumm/he/script_v90he.cpp	2006-07-06 12:22:33 UTC (rev 23377)
@@ -703,6 +703,7 @@
 		_wizParams.box.right = pop();
 		_wizParams.box.top = pop();
 		_wizParams.box.left = pop();
+		adjustRect(_wizParams.box);
 		break;
 	case 40: // HE99+
 		_wizParams.processFlags |= kWPFPaletteNum;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.





More information about the Scummvm-git-logs mailing list