[Scummvm-cvs-logs] CVS: scummvm/simon items.cpp,1.47,1.48

Travis Howell kirben at users.sourceforge.net
Thu Jan 30 01:16:02 CET 2003


Update of /cvsroot/scummvm/scummvm/simon
In directory sc8-pr-cvs1:/tmp/cvs-serv25892/simon

Modified Files:
	items.cpp 
Log Message:

Fix small error in my last commits


Index: items.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/items.cpp,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- items.cpp	29 Jan 2003 11:31:10 -0000	1.47
+++ items.cpp	30 Jan 2003 09:15:04 -0000	1.48
@@ -1299,7 +1299,7 @@
 		}
 
 	}
-	if (child != NULL && child->avail_props & 1 && !_vk_t_toggle) {
+	if (child != NULL && (child->avail_props & 1) && _vk_t_toggle) {
 		if (child->avail_props & 0x100) {
 			sprintf(buf, "%d%s", child->array[getOffsetOfChild2Param(child, 0x100)], s);
 			s = buf;





More information about the Scummvm-git-logs mailing list