[Scummvm-cvs-logs] SF.net SVN: scummvm: [31954] scummvm/trunk/engines/made
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Thu May 8 22:33:28 CEST 2008
Revision: 31954
http://scummvm.svn.sourceforge.net/scummvm/?rev=31954&view=rev
Author: thebluegr
Date: 2008-05-08 13:33:28 -0700 (Thu, 08 May 2008)
Log Message:
-----------
o1_ADDSPRITE is not implemented yet, so throw a warning
Modified Paths:
--------------
scummvm/trunk/engines/made/scriptfuncs_lgop2.cpp
scummvm/trunk/engines/made/scriptfuncs_mhne.cpp
scummvm/trunk/engines/made/scriptfuncs_rtz.cpp
Modified: scummvm/trunk/engines/made/scriptfuncs_lgop2.cpp
===================================================================
--- scummvm/trunk/engines/made/scriptfuncs_lgop2.cpp 2008-05-08 19:50:55 UTC (rev 31953)
+++ scummvm/trunk/engines/made/scriptfuncs_lgop2.cpp 2008-05-08 20:33:28 UTC (rev 31954)
@@ -308,6 +308,7 @@
}
int16 ScriptFunctionsLgop2::o1_ADDSPRITE(int16 argc, int16 *argv) {
+ warning("Unimplemented opcode: o1_ADDSPRITE");
//_vm->_screen->drawSprite(argv[2], argv[1], argv[0]);
return argv[2];
}
Modified: scummvm/trunk/engines/made/scriptfuncs_mhne.cpp
===================================================================
--- scummvm/trunk/engines/made/scriptfuncs_mhne.cpp 2008-05-08 19:50:55 UTC (rev 31953)
+++ scummvm/trunk/engines/made/scriptfuncs_mhne.cpp 2008-05-08 20:33:28 UTC (rev 31954)
@@ -307,6 +307,7 @@
}
int16 ScriptFunctionsMhne::o1_ADDSPRITE(int16 argc, int16 *argv) {
+ warning("Unimplemented opcode: o1_ADDSPRITE");
//_vm->_screen->drawSprite(argv[2], argv[1], argv[0]);
return argv[2];
}
Modified: scummvm/trunk/engines/made/scriptfuncs_rtz.cpp
===================================================================
--- scummvm/trunk/engines/made/scriptfuncs_rtz.cpp 2008-05-08 19:50:55 UTC (rev 31953)
+++ scummvm/trunk/engines/made/scriptfuncs_rtz.cpp 2008-05-08 20:33:28 UTC (rev 31954)
@@ -350,6 +350,7 @@
}
int16 ScriptFunctionsRtz::o1_ADDSPRITE(int16 argc, int16 *argv) {
+ warning("Unimplemented opcode: o1_ADDSPRITE");
//_vm->_screen->drawSprite(argv[2], argv[1], argv[0]);
return 0;//argv[2];
}
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