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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Tue Sep 11 13:10:23 CEST 2007


Revision: 28891
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28891&view=rev
Author:   thebluegr
Date:     2007-09-11 04:10:23 -0700 (Tue, 11 Sep 2007)

Log Message:
-----------
Removed an obsolete FIXME. The code in that part matches the original, so there doesn't seem to be any obvious reason for that FIXME

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

Modified: scummvm/trunk/engines/saga/actor.cpp
===================================================================
--- scummvm/trunk/engines/saga/actor.cpp	2007-09-11 09:20:39 UTC (rev 28890)
+++ scummvm/trunk/engines/saga/actor.cpp	2007-09-11 11:10:23 UTC (rev 28891)
@@ -2014,9 +2014,7 @@
 					newLocation.y += _vm->_rnd.getRandomNumber(prefer1.y - 1) - prefer1.y / 2;
 				}
 
-				// FIXME: Fingolfin asks: why is there a FIXME here? Please either clarify what
-				// needs fixing, or remove it!
-				newLocation.x = clamp(-31*4, newLocation.x, (_vm->getDisplayWidth() + 31) * 4); //fixme
+				newLocation.x = clamp(-31 * 4, newLocation.x, (_vm->getDisplayWidth() + 31) * 4);
 
 				return actorWalkTo(actor->_id, newLocation);
 			}


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