[Scummvm-cvs-logs] SF.net SVN: scummvm: [28409] scummvm/trunk/engines/saga/font.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Thu Aug 2 17:29:50 CEST 2007


Revision: 28409
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28409&view=rev
Author:   thebluegr
Date:     2007-08-02 08:29:50 -0700 (Thu, 02 Aug 2007)

Log Message:
-----------
Undefined character 9 is no longer printed in the IHNM demo help screen

Modified Paths:
--------------
    scummvm/trunk/engines/saga/font.cpp

Modified: scummvm/trunk/engines/saga/font.cpp
===================================================================
--- scummvm/trunk/engines/saga/font.cpp	2007-08-02 15:08:49 UTC (rev 28408)
+++ scummvm/trunk/engines/saga/font.cpp	2007-08-02 15:29:50 UTC (rev 28409)
@@ -332,7 +332,7 @@
 		// Check if character is defined
 		if ((drawFont.fontCharEntry[c_code].index == 0) && (c_code != FONT_FIRSTCHAR)) {
 #if FONT_SHOWUNDEFINED
-			if (c_code == FONT_CH_SPACE) {
+			if (c_code == FONT_CH_SPACE || c_code == 9) {
 				textPoint.x += drawFont.fontCharEntry[c_code].tracking;
 				continue;
 			}


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