[Scummvm-cvs-logs] SF.net SVN: scummvm:[43500] scummvm/trunk/engines/saga/actor.h

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Tue Aug 18 08:43:06 CEST 2009


Revision: 43500
          http://scummvm.svn.sourceforge.net/scummvm/?rev=43500&view=rev
Author:   thebluegr
Date:     2009-08-18 06:43:06 +0000 (Tue, 18 Aug 2009)

Log Message:
-----------
Applied agent-q's patch to the SAGA pathfinding code for all platforms - x and y should not ever be greater than 640 and 480 respectively, so it looks safe enough to be applied

Modified Paths:
--------------
    scummvm/trunk/engines/saga/actor.h

Modified: scummvm/trunk/engines/saga/actor.h
===================================================================
--- scummvm/trunk/engines/saga/actor.h	2009-08-18 00:31:47 UTC (rev 43499)
+++ scummvm/trunk/engines/saga/actor.h	2009-08-18 06:43:06 UTC (rev 43500)
@@ -183,8 +183,8 @@
 
 struct PathDirectionData {
 	int8 direction;
-	int x;
-	int y;
+	int16 x;
+	int16 y;
 };
 
 struct ActorFrameRange {


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