[Scummvm-cvs-logs] CVS: scummvm/scumm scummvm.cpp,2.357,2.358

Travis Howell kirben at users.sourceforge.net
Thu Aug 28 23:54:01 CEST 2003


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

Modified Files:
	scummvm.cpp 
Log Message:

Fix verbs been shown in cutscenes in v1-v2 games if loading/saving during cutscene.


Index: scummvm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scummvm.cpp,v
retrieving revision 2.357
retrieving revision 2.358
diff -u -d -r2.357 -r2.358
--- scummvm.cpp	29 Aug 2003 06:46:12 -0000	2.357
+++ scummvm.cpp	29 Aug 2003 06:53:00 -0000	2.358
@@ -1290,8 +1290,10 @@
 		_completeScreenRedraw = false;
 		gdi.clearCharsetMask();
 		_charset->_hasMask = false;
-		for (int i = 0; i < _maxVerbs; i++)
-			drawVerb(i, 0);
+		if (_version > 2) {
+			for (int i = 0; i < _maxVerbs; i++)
+				drawVerb(i, 0);
+		}
 		verbMouseOver(0);
 
 		if (_version <= 2) {





More information about the Scummvm-git-logs mailing list