[Scummvm-cvs-logs] CVS: scummvm/sky text.cpp,1.66,1.67

Joost Peters joostp at users.sourceforge.net
Sun Mar 13 06:04:20 CET 2005


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

Modified Files:
	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.66
retrieving revision 1.67
diff -u -d -r1.66 -r1.67
--- text.cpp	13 Mar 2005 13:15:17 -0000	1.66
+++ text.cpp	13 Mar 2005 14:03:54 -0000	1.67
@@ -404,8 +404,8 @@
 	// 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))
 			textChar = 0x20;





More information about the Scummvm-git-logs mailing list