diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/font.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/font.cc b/lib/font.cc index 014abde..cd04177 100644 --- a/lib/font.cc +++ b/lib/font.cc @@ -101,14 +101,12 @@ mogltk::ColorP colorcached[16] = { mogltk::font::font(Handle * ffont) : textcolor(255, 255, 255, 255), shadow(0), wspace(0) { int i, j; - printm(M_INFO, "Reading font header\n"); nbentries = ffont->readU16(); flags = ffont->readU8(); maxX = ffont->readU8(); maxY = ffont->readU8(); base = ffont->readU8(); inter = ffont->readU8(); - printm(M_INFO, "Reading at offset 0x%x\n", ffont->tell()); nbcU = 256 / maxX; nbcV = 256 / maxY; |