[Scummvm-cvs-logs] CVS: scummvm/scumm camera.cpp,2.8,2.9

Max Horn fingolfin at users.sourceforge.net
Mon Jul 7 15:18:08 CEST 2003


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

Modified Files:
	camera.cpp 
Log Message:
only move charset mask upon scrolling if tex is displayed in the game graphics, but not for games which have a seperate text display area (partial fix for bug #766109)

Index: camera.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/camera.cpp,v
retrieving revision 2.8
retrieving revision 2.9
diff -u -d -r2.8 -r2.9
--- camera.cpp	1 Jul 2003 15:26:07 -0000	2.8
+++ camera.cpp	7 Jul 2003 22:17:20 -0000	2.9
@@ -337,7 +337,7 @@
 	virtscr[0].xstart = _screenStartStrip << 3;
 #endif
 
-	if (_charset->_hasMask) {
+	if (_charset->_hasMask && !(_version <= 3 && _gameId != GID_LOOM)) {
 		int dx = camera._cur.x - camera._last.x;
 		int dy = camera._cur.y - camera._last.y;
 		if (dx || dy) {





More information about the Scummvm-git-logs mailing list