[Scummvm-cvs-logs] CVS: scummvm/sky text.cpp,1.48,1.48.2.1
Travis Howell
kirben at users.sourceforge.net
Mon Jul 28 18:04:07 CEST 2003
Update of /cvsroot/scummvm/scummvm/sky
In directory sc8-pr-cvs1:/tmp/cvs-serv11641
Modified Files:
Tag: branch-0-5-0
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.48.2.1
diff -u -d -r1.48 -r1.48.2.1
--- text.cpp 12 Jul 2003 15:21:34 -0000 1.48
+++ text.cpp 29 Jul 2003 01:03:51 -0000 1.48.2.1
@@ -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