From 1c262740613075cbfd525877d8f3011e4431e063 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Thu, 2 Aug 2007 15:29:50 +0000 Subject: Undefined character 9 is no longer printed in the IHNM demo help screen svn-id: r28409 --- engines/saga/font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/saga/font.cpp b/engines/saga/font.cpp index c38c9e2110..71cd6b0eef 100644 --- a/engines/saga/font.cpp +++ b/engines/saga/font.cpp @@ -332,7 +332,7 @@ void Font::outFont(const FontStyle &drawFont, Surface *ds, const char *text, siz // 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; } -- cgit v1.2.3