[Scummvm-cvs-logs] CVS: scummvm/scumm akos.cpp,1.104,1.105

Pawel Kolodziejski aquadran at users.sourceforge.net
Thu Jan 29 20:36:00 CET 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15522

Modified Files:
	akos.cpp 
Log Message:
fix for bug 886201 or rather revert back to hack

Index: akos.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/akos.cpp,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -d -r1.104 -r1.105
--- akos.cpp	16 Jan 2004 13:01:32 -0000	1.104
+++ akos.cpp	29 Jan 2004 19:59:00 -0000	1.105
@@ -1213,7 +1213,13 @@
 			a->flip = GW(2) != 0;
 			continue;
 		case AKC_CmdQue3:
-			tmp = GB(2);
+			// FIXME/TODO this is exception fot FT game for missing "half" footsteps
+			// see bug #886201
+			// this fix/hack was introduced a long time ago
+			if (_gameId == GID_FT)
+				tmp = GB(2) - 1;
+			else
+				tmp = GB(2);
 			if ((uint) tmp < 8)
 				akos_queCommand(3, a, a->sound[tmp], 0);
 			continue;





More information about the Scummvm-git-logs mailing list