[Scummvm-cvs-logs] CVS: scummvm/scumm gfx.cpp,2.252,2.253

Max Horn fingolfin at users.sourceforge.net
Tue Jan 6 04:09:00 CET 2004


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

Modified Files:
	gfx.cpp 
Log Message:
just always call updateDirtyScreen(kTextVirtScreen) - it won't do any harm for games not using that virt screen, but fixes the Indy part of the PASS demo

Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/gfx.cpp,v
retrieving revision 2.252
retrieving revision 2.253
diff -u -d -r2.252 -r2.253
--- gfx.cpp	6 Jan 2004 11:47:34 -0000	2.252
+++ gfx.cpp	6 Jan 2004 12:08:35 -0000	2.253
@@ -325,9 +325,8 @@
 	// Update verbs
 	updateDirtyScreen(kVerbVirtScreen);
 	
-	// In V1-V3, update the conversation area (at the top of the screen)
-	if (_version <= 3)
-		updateDirtyScreen(kTextVirtScreen);
+	// Update the conversation area (at the top of the screen)
+	updateDirtyScreen(kTextVirtScreen);
 
 	// Update game area ("stage")
 	if (camera._last.x != camera._cur.x || (_features & GF_NEW_CAMERA && (camera._cur.y != camera._last.y))) {





More information about the Scummvm-git-logs mailing list