diff options
author | Michael Drake <tlsa@netsurf-browser.org> | 2014-05-06 21:58:49 +0100 |
---|---|---|
committer | Michael Drake <tlsa@netsurf-browser.org> | 2014-05-06 21:58:49 +0100 |
commit | 15ba60f3052ea20a661fdc4337877292e4129a57 (patch) | |
tree | 36c8e1f362f1d7b4500f1e5948b298281dfe6f4e /framebuffer | |
parent | c75d23e5392926ae16cb058a2f0ce025961ce8b7 (diff) | |
download | netsurf-15ba60f3052ea20a661fdc4337877292e4129a57.tar.gz |
Remove some debug.
Diffstat (limited to 'framebuffer')
-rw-r--r-- | framebuffer/font_internal.c | 1 |
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]; } |