[Scummvm-cvs-logs] CVS: scummvm/scumm imuse.cpp,1.97,1.98

Jamieson Christian jamieson630 at users.sourceforge.net
Fri Dec 13 07:50:05 CET 2002


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv642/scummvm/scumm

Modified Files:
	imuse.cpp 
Log Message:
Bug [651727] fix:
Initial implementation of do_command(20).

Index: imuse.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/imuse.cpp,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -d -r1.97 -r1.98
--- imuse.cpp	13 Dec 2002 15:16:40 -0000	1.97
+++ imuse.cpp	13 Dec 2002 15:49:30 -0000	1.98
@@ -1495,8 +1495,13 @@
 			// This should clear a trigger that's been set up
 			// with ImSetTrigger (cmd == 17). Seems to work....
 			return ImClearTrigger (b, d);
-		case 20: // FIXME: Deferred command system? - Sam and Max
-			return 0;
+		case 20:
+			// Sam & Max: Deferred Command
+			// FIXME: Right now this acts as an immediate command.
+			// The significance of parameter b is unknown.
+			warning ("Incomplete support for iMuse::do_command(20)");
+			return do_command (c, d, e, f, g, h, 0, 0);
+			// return 0;
 		case 2:
 		case 3:
 			return 0;





More information about the Scummvm-git-logs mailing list