[Scummvm-cvs-logs] CVS: scummvm/scumm string.cpp,1.57,1.58

Jonathan Gray khalek at users.sourceforge.net
Sat Dec 21 19:13:04 CET 2002


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

Modified Files:
	string.cpp 
Log Message:
remove old commented fixme, make turning off subtitles work in the scumm part of the dig, still needs to be done for smush

Index: string.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/string.cpp,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -d -r1.57 -r1.58
--- string.cpp	21 Dec 2002 12:34:17 -0000	1.57
+++ string.cpp	22 Dec 2002 03:12:50 -0000	1.58
@@ -608,12 +608,10 @@
 			if (_features & GF_OLD256)
 				charset.printCharOld(c);
 			else if (!(_features & GF_AFTER_V6)) {
-//                                if (!_vars[VAR_V5_CHARFLAG]) { /* FIXME */
 				if (!(_haveMsg == 0xFE && _noSubtitles))
 					charset.printChar(c);
-//                                }
 			} else {
-				if (!(_haveMsg == 0xFE && _noSubtitles))
+				if (!((_haveMsg == 0xFE || _haveMsg == 0xFF) && _noSubtitles))
 					charset.printChar(c);
 			}
 





More information about the Scummvm-git-logs mailing list