[Scummvm-cvs-logs] CVS: scummvm/scumm string.cpp,1.27,1.28

James Brown ender at users.sourceforge.net
Sun Oct 6 08:40:02 CEST 2002


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

Modified Files:
	string.cpp 
Log Message:
Fix text drawing for pre-v7 games


Index: string.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/string.cpp,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- string.cpp	6 Oct 2002 07:23:08 -0000	1.27
+++ string.cpp	6 Oct 2002 15:39:38 -0000	1.28
@@ -615,8 +615,11 @@
 		charset._ignoreCharsetMask = 1;
 
 
-	// Verb text should never time out.
-	if (a == 4)
+	// In Full Throttle (and other games?), verb text should always mask
+	// and never time out. We can't do it blindly for all games, because
+	// it causes problem with the FOA intro.
+
+	if (_gameId == GID_FT && a == 4)
 		_talkDelay = -1;
 
 	if (!buf[0]) {





More information about the Scummvm-git-logs mailing list