[Scummvm-cvs-logs] SF.net SVN: scummvm: [21416] scummvm/trunk/engines/simon/items.cpp

kirben at users.sourceforge.net kirben at users.sourceforge.net
Wed Mar 22 20:42:16 CET 2006


Revision: 21416
Author:   kirben
Date:     2006-03-22 20:41:06 -0800 (Wed, 22 Mar 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=21416&view=rev

Log Message:
-----------
Add opcode 161 difference in FF, fixes some glitches in 2nd room

Modified Paths:
--------------
    scummvm/trunk/engines/simon/items.cpp
Modified: scummvm/trunk/engines/simon/items.cpp
===================================================================
--- scummvm/trunk/engines/simon/items.cpp	2006-03-23 03:55:00 UTC (rev 21415)
+++ scummvm/trunk/engines/simon/items.cpp	2006-03-23 04:41:06 UTC (rev 21416)
@@ -938,7 +938,10 @@
 				TextLocation *tl = getTextLocation(getVarOrByte());
 
 				tl->x = getVarOrWord();
-				tl->y = getVarOrByte();
+				if (getGameType() == GType_FF)
+					tl->y = getVarOrWord();
+				else
+					tl->y = getVarOrByte();
 				tl->width = getVarOrWord();
 			}
 			break;


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