summaryrefslogtreecommitdiff
path: root/framebuffer
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-05-06 21:58:49 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2014-05-06 21:58:49 +0100
commit15ba60f3052ea20a661fdc4337877292e4129a57 (patch)
tree36c8e1f362f1d7b4500f1e5948b298281dfe6f4e /framebuffer
parentc75d23e5392926ae16cb058a2f0ce025961ce8b7 (diff)
downloadnetsurf-15ba60f3052ea20a661fdc4337877292e4129a57.tar.gz
netsurf-15ba60f3052ea20a661fdc4337877292e4129a57.tar.bz2
Remove some debug.
Diffstat (limited to 'framebuffer')
-rw-r--r--framebuffer/font_internal.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/framebuffer/font_internal.c b/framebuffer/font_internal.c
index ce213a80c..5aada8f11 100644
--- a/framebuffer/font_internal.c
+++ b/framebuffer/font_internal.c
@@ -254,7 +254,6 @@ fb_get_glyph(uint32_t ucs4, enum fb_font_style style)
if (section != 0 || ucs4 / 256 == 0) {
offset = section * 256 + (ucs4 & 0xff);
g_offset = fb_regular_sections[offset] * 16;
-if (ucs4 == 0x010C) printf("section: %i, offset: %i, g_offset:%i\n", section, offset, g_offset);
if (g_offset != 0) {
return &font_glyph_data[g_offset];
}