[Scummvm-cvs-logs] CVS: scummvm/scumm script_v6.cpp,1.162,1.163
Torbj?rn Andersson
eriktorbjorn at users.sourceforge.net
Sat Jun 14 10:00:07 CEST 2003
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv25638
Modified Files:
script_v6.cpp
Log Message:
Fixed o6_band() to be "logical AND" instead of "logical OR". I've forgotten
who pointed this out, and I don't know which games use it.
Index: script_v6.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v6.cpp,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -d -r1.162 -r1.163
--- script_v6.cpp 14 Jun 2003 12:23:30 -0000 1.162
+++ script_v6.cpp 14 Jun 2003 16:59:20 -0000 1.163
@@ -580,7 +580,7 @@
void Scumm_v6::o6_band() {
int a = pop();
- push(pop() | a);
+ push(pop() & a);
}
void Scumm_v6::o6_pop() {
More information about the Scummvm-git-logs
mailing list