[Scummvm-cvs-logs] SF.net SVN: scummvm:[39075] scummvm/trunk/engines/parallaction/exec_br.cpp

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Mon Mar 2 16:31:07 CET 2009


Revision: 39075
          http://scummvm.svn.sourceforge.net/scummvm/?rev=39075&view=rev
Author:   peres001
Date:     2009-03-02 15:31:07 +0000 (Mon, 02 Mar 2009)

Log Message:
-----------
Marked PUT, PRINT and WAIT commands as not used in the scripts of BRA (thus they won't be implemented).

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/exec_br.cpp

Modified: scummvm/trunk/engines/parallaction/exec_br.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/exec_br.cpp	2009-03-02 13:46:50 UTC (rev 39074)
+++ scummvm/trunk/engines/parallaction/exec_br.cpp	2009-03-02 15:31:07 UTC (rev 39075)
@@ -422,13 +422,15 @@
 
 
 DECLARE_INSTRUCTION_OPCODE(put) {
-	warning("Parallaction_br::instOp_put not yet implemented");
+	// NOTE: there is not a single occurrence of PUT in the scripts
+	warning("PUT instruction is not implemented!");
 }
 
 
 
 DECLARE_INSTRUCTION_OPCODE(wait) {
-	warning("Parallaction_br::instOp_wait not yet implemented");
+	// NOTE: there is not a single occurrence of WAIT in the scripts
+	warning("WAIT instruction is not implemented!");
 }
 
 
@@ -464,7 +466,9 @@
 
 
 DECLARE_INSTRUCTION_OPCODE(print) {
-	warning("Parallaction_br::instOp_print not yet implemented");
+	// NOTE: there is not a single occurrence of PRINT in the scripts
+	// I suppose it was used for debugging
+	warning("PRINT instruction is not implemented!");
 }
 
 DECLARE_INSTRUCTION_OPCODE(text) {


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