[Scummvm-cvs-logs] CVS: scummvm/sky text.cpp,1.62.2.1,1.62.2.2

Joost Peters joostp at users.sourceforge.net
Sun Mar 13 06:05:41 CET 2005


Update of /cvsroot/scummvm/scummvm/sky
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3688/sky

Modified Files:
      Tag: branch-0-7-0
	text.cpp 
Log Message:
Use same length as original, as the string is split across 2 lines it doesn't matter anyway.
this way we won't have to create a temporary buffer.


Index: text.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/text.cpp,v
retrieving revision 1.62.2.1
retrieving revision 1.62.2.2
diff -u -d -r1.62.2.1 -r1.62.2.2
--- text.cpp	13 Mar 2005 13:25:03 -0000	1.62.2.1
+++ text.cpp	13 Mar 2005 14:04:58 -0000	1.62.2.2
@@ -402,7 +402,7 @@
 	// the correct string "MANIFESTACION - ARTISTICA.", which doesn't break the algorithm/game.
 	tmpPtr = strstr(textPtr, "MANIFESTACION-ARTISTICA.");
 	if (tmpPtr)
-		strcpy(tmpPtr, "MANIFESTACION - ARTISTICA.");
+		strcpy(tmpPtr, "MANIFESTACION ARTISTICA.");
 	
 	while (textChar >= 0x20) {
 		if ((_curCharSet == 1) && (textChar >= 0x80))





More information about the Scummvm-git-logs mailing list