[Scummvm-cvs-logs] CVS: scummvm/scumm verbs.cpp,1.105,1.106

Max Horn fingolfin at users.sourceforge.net
Sat Aug 28 06:31:59 CEST 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5832

Modified Files:
	verbs.cpp 
Log Message:
Fix for bug #1015941 (COMI: There's only background behind dialogue lines)

Index: verbs.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/verbs.cpp,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -d -r1.105 -r1.106
--- verbs.cpp	14 Aug 2004 19:42:00 -0000	1.105
+++ verbs.cpp	28 Aug 2004 13:30:59 -0000	1.106
@@ -424,7 +424,9 @@
 
 	vs = &_verbs[verb];
 
-	if (_version >= 7) {
+	if (_version == 8) {
+		// Do nothing
+	} else if (_version >= 7) {
 		restoreBG(vs->curRect, vs->bkcolor);
 	} else if (vs->oldRect.left != -1) {
 		restoreBG(vs->oldRect, vs->bkcolor);





More information about the Scummvm-git-logs mailing list