aboutsummaryrefslogtreecommitdiff
path: root/lib/gdi/font.cpp
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-01-29 05:22:00 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-01-29 05:22:00 +0000
commit6b7b7977a92c9a092763bf699cba85347f9f2ec6 (patch)
tree473fbea9df91c570db54ec8e65d968e72c18a492 /lib/gdi/font.cpp
parent2590d97005eecab111a4bf8476da9eb1c700654c (diff)
downloadenigma2-6b7b7977a92c9a092763bf699cba85347f9f2ec6.tar.gz
enigma2-6b7b7977a92c9a092763bf699cba85347f9f2ec6.zip
- add fake "main menu"
- enable grc threading - disable some debug - dialog stacks
Diffstat (limited to 'lib/gdi/font.cpp')
-rw-r--r--lib/gdi/font.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/gdi/font.cpp b/lib/gdi/font.cpp
index f7c62209..187512d5 100644
--- a/lib/gdi/font.cpp
+++ b/lib/gdi/font.cpp
@@ -60,12 +60,12 @@ static gLookup &getColor(const gPalette &pal, const gRGB &start, const gRGB &end
if (i != colorcache.end())
return i->second;
gLookup &n=colorcache.insert(std::pair<fntColorCacheKey,gLookup>(key,gLookup())).first->second;
- eDebug("[FONT] creating new font color cache entry %02x%02x%02x%02x .. %02x%02x%02x%02x", start.a, start.r, start.g, start.b,
- end.a, end.r, end.g, end.b);
+// eDebug("[FONT] creating new font color cache entry %02x%02x%02x%02x .. %02x%02x%02x%02x", start.a, start.r, start.g, start.b,
+// end.a, end.r, end.g, end.b);
n.build(16, pal, start, end);
- for (int i=0; i<16; i++)
- eDebugNoNewLine("%02x|%02x%02x%02x%02x ", (int)n.lookup[i], pal.data[n.lookup[i]].a, pal.data[n.lookup[i]].r, pal.data[n.lookup[i]].g, pal.data[n.lookup[i]].b);
- eDebug("");
+// for (int i=0; i<16; i++)
+// eDebugNoNewLine("%02x|%02x%02x%02x%02x ", (int)n.lookup[i], pal.data[n.lookup[i]].a, pal.data[n.lookup[i]].r, pal.data[n.lookup[i]].g, pal.data[n.lookup[i]].b);
+// eDebug("");
return n;
}