[Scummvm-cvs-logs] SF.net SVN: scummvm:[48718] scummvm/trunk/engines/sci/graphics/text16.cpp

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Mon Apr 19 17:30:21 CEST 2010


Revision: 48718
          http://scummvm.svn.sourceforge.net/scummvm/?rev=48718&view=rev
Author:   m_kiewitz
Date:     2010-04-19 15:30:21 +0000 (Mon, 19 Apr 2010)

Log Message:
-----------
SCI: added even more comments about the 0xD 0xA inside GetLongest()

Modified Paths:
--------------
    scummvm/trunk/engines/sci/graphics/text16.cpp

Modified: scummvm/trunk/engines/sci/graphics/text16.cpp
===================================================================
--- scummvm/trunk/engines/sci/graphics/text16.cpp	2010-04-19 12:54:07 UTC (rev 48717)
+++ scummvm/trunk/engines/sci/graphics/text16.cpp	2010-04-19 15:30:21 UTC (rev 48718)
@@ -179,6 +179,11 @@
 			break;
 
 		// We need to add 0xD, 0xA and 0xD 0xA to curCharCount and then exit
+		//  which means, we split text like
+		//  'Mature, experienced software analyst available.' 0xD 0xA
+		//  'Bug installation a proven speciality. "No version too clean."' (normal game text, this is from lsl2)
+		//   and 0xA '-------' 0xA (which is the official sierra subtitle separator)
+		//  Sierra did it the same way.
 		case 0xD:
 			// Check, if 0xA is following, if so include it as well
 			if ((*(const unsigned char *)text) == 0xA)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list