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

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Sun Apr 18 23:18:58 CEST 2010


Revision: 48706
          http://scummvm.svn.sourceforge.net/scummvm/?rev=48706&view=rev
Author:   m_kiewitz
Date:     2010-04-18 21:18:58 +0000 (Sun, 18 Apr 2010)

Log Message:
-----------
SCI: removing single byte chars from double byte check in sjis class (damn wikipedia with their similar colors hehe)

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

Modified: scummvm/trunk/engines/sci/graphics/fontsjis.cpp
===================================================================
--- scummvm/trunk/engines/sci/graphics/fontsjis.cpp	2010-04-18 20:03:26 UTC (rev 48705)
+++ scummvm/trunk/engines/sci/graphics/fontsjis.cpp	2010-04-18 21:18:58 UTC (rev 48706)
@@ -53,7 +53,7 @@
 
 // Returns true for first byte of double byte characters
 bool GfxFontSjis::isDoubleByte(uint16 chr) {
-	if ((chr == 0x5C) || (chr == 0x7E) || ((chr >= 0x81) && (chr <= 0x9F)) || ((chr >= 0xE0) && (chr <= 0xEF)))
+	if (((chr >= 0x81) && (chr <= 0x9F)) || ((chr >= 0xE0) && (chr <= 0xEF)))
 		return true;
 	return false;
 }


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