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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Tue May 29 23:50:36 CEST 2007


Revision: 27009
          http://scummvm.svn.sourceforge.net/scummvm/?rev=27009&view=rev
Author:   thebluegr
Date:     2007-05-29 14:50:32 -0700 (Tue, 29 May 2007)

Log Message:
-----------
Fix for bug #774783 - INDY3: problems in Berlin with Hitler (submitted after talking with Fingolfin)

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

Modified: scummvm/trunk/engines/scumm/actor.cpp
===================================================================
--- scummvm/trunk/engines/scumm/actor.cpp	2007-05-29 21:35:13 UTC (rev 27008)
+++ scummvm/trunk/engines/scumm/actor.cpp	2007-05-29 21:50:32 UTC (rev 27009)
@@ -796,6 +796,11 @@
 	int i;
 	uint16 vald;
 
+	// HACK to fix bug #774783
+	// If Hitler's direction is being set to anything other than 90, set it to 90
+	if ((_vm->_game.id == GID_INDY3) && _vm->_roomResource == 46 && _number == 9 && direction != 90)
+		direction = 90;
+
 	// Do nothing if actor is already facing in the given direction
 	if (_facing == direction)
 		return;


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