[Scummvm-cvs-logs] CVS: scummvm/scumm scummvm.cpp,2.406,2.407

Travis Howell kirben at users.sourceforge.net
Sat Sep 27 20:20:17 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv16759/scumm

Modified Files:
	scummvm.cpp 
Log Message:

Fix problem of verbs areas always been shown after reload in V1-V2 games.
Seems to fix problem of distaff highlights after reload in loom [ega].
Could cause regression in fm towns games.


Index: scummvm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scummvm.cpp,v
retrieving revision 2.406
retrieving revision 2.407
diff -u -d -r2.406 -r2.407
--- scummvm.cpp	28 Sep 2003 00:03:24 -0000	2.406
+++ scummvm.cpp	28 Sep 2003 03:19:26 -0000	2.407
@@ -1423,8 +1423,14 @@
 		_completeScreenRedraw = false;
 		gdi.clearCharsetMask();
 		_charset->_hasMask = false;
-		for (int i = 0; i < _maxVerbs; i++)
-			drawVerb(i, 0);
+
+		if (_version > 3) {
+			for (int i = 0; i < _maxVerbs; i++)
+				drawVerb(i, 0);
+		} else {
+			redrawVerbs();
+		}
+
 		verbMouseOver(0);
 
 		if (_version <= 2) {





More information about the Scummvm-git-logs mailing list