[Scummvm-cvs-logs] SF.net SVN: scummvm: [32123] scummvm/trunk/engines/made/scriptfuncs.cpp
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Wed May 14 22:12:58 CEST 2008
Revision: 32123
http://scummvm.svn.sourceforge.net/scummvm/?rev=32123&view=rev
Author: thebluegr
Date: 2008-05-14 13:12:58 -0700 (Wed, 14 May 2008)
Log Message:
-----------
Some comments to opcodes sfGetMusicBeat and sfSetTextRect
Modified Paths:
--------------
scummvm/trunk/engines/made/scriptfuncs.cpp
Modified: scummvm/trunk/engines/made/scriptfuncs.cpp
===================================================================
--- scummvm/trunk/engines/made/scriptfuncs.cpp 2008-05-14 19:42:02 UTC (rev 32122)
+++ scummvm/trunk/engines/made/scriptfuncs.cpp 2008-05-14 20:12:58 UTC (rev 32123)
@@ -360,7 +360,9 @@
}
int16 ScriptFunctions::sfGetMusicBeat(int16 argc, int16 *argv) {
- warning("Unimplemented opcode: sfGetMusicBeat");
+ // This is called loads of times in the intro of the floppy version
+ // of RtZ. Not sure what it does. Commented out to reduce spam
+ //warning("Unimplemented opcode: sfGetMusicBeat");
return 0;
}
@@ -485,6 +487,7 @@
}
int16 ScriptFunctions::sfSetTextRect(int16 argc, int16 *argv) {
+ // Used in the save/load screens of RtZ, and perhaps other places as well
int16 x1 = CLIP<int16>(argv[4], 1, 318);
int16 y1 = CLIP<int16>(argv[3], 1, 198);
int16 x2 = CLIP<int16>(argv[2], 1, 318);
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