[Scummvm-cvs-logs] CVS: scummvm/scumm gfx.cpp,1.44,1.45

Pawe? Ko?odziejski aquadran at users.sourceforge.net
Sun Oct 27 10:42:02 CET 2002


Update of /cvsroot/scummvm/scummvm/scumm
In directory usw-pr-cvs1:/tmp/cvs-serv7105

Modified Files:
	gfx.cpp 
Log Message:
changed param in initVirtScreen in initScreens

Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/gfx.cpp,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- gfx.cpp	27 Oct 2002 15:16:49 -0000	1.44
+++ gfx.cpp	27 Oct 2002 18:41:27 -0000	1.45
@@ -66,7 +66,11 @@
 	}
 
 	if (!getResourceAddress(rtBuffer, 4)) {
-		initVirtScreen(3, 0, 80, _realWidth, 13, false, false);
+		if (_features & GF_AFTER_V7) {
+			initVirtScreen(3, 0, (_realHeight / 2) - 10, _realWidth, 13, false, false);
+		} else {
+			initVirtScreen(3, 0, 80, _realWidth, 13, false, false);
+		}
 	}
 	initVirtScreen(0, 0, b, _realWidth, h - b, true, true);
 	initVirtScreen(1, 0, 0, _realWidth, b, false, false);





More information about the Scummvm-git-logs mailing list