diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-06-05 16:52:51 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-06-05 16:52:51 +0200 |
commit | 2dc9309d2d39bd52d1f0eefa5a64ab36f3e77bf8 (patch) | |
tree | 44dd87441d46372fed3ebbb15a4d8b27096df215 | |
parent | 51b02cade3f7f01207901c49fcbe2636883537ae (diff) | |
download | vdr-2dc9309d2d39bd52d1f0eefa5a64ab36f3e77bf8.tar.gz vdr-2dc9309d2d39bd52d1f0eefa5a64ab36f3e77bf8.tar.bz2 |
Fixed ignoring unused "none" color entries in XPM files (there was an unnecessary log entry)
-rw-r--r-- | osd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osd.c 1.51 2004/06/05 13:20:19 kls Exp $ + * $Id: osd.c 1.52 2004/06/05 16:52:51 kls Exp $ */ #include "osd.h" @@ -397,7 +397,7 @@ void cBitmap::DrawText(int x, int y, const char *s, tColor ColorFg, tColor Color x -= x0; y -= y0; tIndex fg = Index(ColorFg); - tIndex bg = Index(ColorBg); + tIndex bg = (ColorBg != clrTransparent) ? Index(ColorBg) : 0; while (s && *s) { const cFont::tCharData *CharData = Font->CharData(*s++); if (limit && int(x + CharData->width) > limit) |