diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-03-01 10:21:12 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-03-01 10:21:12 +0100 |
commit | 3bd7f7a0e02ad805c161ac616bc2adcdb429350b (patch) | |
tree | 6fa064655cab5ca9ce53a0f06ee1b9057abe2652 /font.c | |
parent | de5e737027413b4015ca2ebce45811544927b5f3 (diff) | |
download | vdr-3bd7f7a0e02ad805c161ac616bc2adcdb429350b.tar.gz vdr-3bd7f7a0e02ad805c161ac616bc2adcdb429350b.tar.bz2 |
Rendering the non-breaking space symbol as a blank
Diffstat (limited to 'font.c')
-rw-r--r-- | font.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: font.c 1.24 2008/02/29 13:35:15 kls Exp $ + * $Id: font.c 1.25 2008/03/01 10:19:41 kls Exp $ */ #include "font.h" @@ -184,6 +184,10 @@ int cFreetypeFont::Kerning(cGlyph *Glyph, uint PrevSym) const cGlyph* cFreetypeFont::Glyph(uint CharCode, bool AntiAliased) const { + // Non-breaking space: + if (CharCode == 0xA0) + CharCode = 0x20; + // Lookup in cache: cList<cGlyph> *glyphCache = AntiAliased ? &glyphCacheAntiAliased : &glyphCacheMonochrome; for (cGlyph *g = glyphCache->First(); g; g = glyphCache->Next(g)) { @@ -216,7 +220,7 @@ cGlyph* cFreetypeFont::Glyph(uint CharCode, bool AntiAliased) const } #define UNKNOWN_GLYPH_INDICATOR '?' if (CharCode != UNKNOWN_GLYPH_INDICATOR) - return Glyph(UNKNOWN_GLYPH_INDICATOR); + return Glyph(UNKNOWN_GLYPH_INDICATOR, AntiAliased); return NULL; } |