[Scummvm-cvs-logs] CVS: scummvm/sky text.cpp,1.48,1.49

Max Horn fingolfin at users.sourceforge.net
Mon Jul 28 14:00:13 CEST 2003


Update of /cvsroot/scummvm/scummvm/sky
In directory sc8-pr-cvs1:/tmp/cvs-serv30058

Modified Files:
	text.cpp 
Log Message:
checkin for LavosSpawn: 'work around bug #778105 (line width exceeded)'

Index: text.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/text.cpp,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- text.cpp	12 Jul 2003 15:21:34 -0000	1.48
+++ text.cpp	28 Jul 2003 20:59:53 -0000	1.49
@@ -247,6 +247,11 @@
 	textChar = (uint8)*curPos++;
 	_dtLetters++;
 
+	// work around bug #778105 (line width exceeded)
+	char *tmpPtr = strstr(textPtr, "MUND-BEATMUNG!");
+	if (tmpPtr)
+		strcpy(tmpPtr, "MUND BEATMUNG!");
+
 	while (textChar >= 0x20) {
 		if ((_curCharSet == 1) && (textChar >= 0x80))
 			textChar = 0x20;





More information about the Scummvm-git-logs mailing list