summaryrefslogtreecommitdiff
path: root/lib/font.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/font.cc')
-rw-r--r--lib/font.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/font.cc b/lib/font.cc
index 72d7de9..efdd9bd 100644
--- a/lib/font.cc
+++ b/lib/font.cc
@@ -142,7 +142,6 @@ mogltk::font::font(Handle * ffont) : textcolor(255, 255, 255, 255), shadow(0), w
Uint8 * curtex = (Uint8 *) fonttex[0]->GetSurface()->pixels;
Uint32 curU = 0, curV = 0, curT = 0;
for (i = 0; i < nbentries; i++) {
- printm(M_INFO, "Reading entry %i at offset 0x%x\n", i, ffont->tell());
sizes[i] = ffont->readU8();
for (int v = 0; v < maxY; v++) {
for (int u = 0; u < maxX; u++) {
@@ -179,7 +178,6 @@ mogltk::font::font(Handle * ffont) : textcolor(255, 255, 255, 255), shadow(0), w
corresp = (Uint16 *) malloc(nbentries * 2 * sizeof(Uint16));
for (i = 0; i < 2 * nbentries; i++) {
- printm(M_INFO, "Reading translation entry number %i at offset 0x%x\n", i, ffont->tell());
corresp[i] = ffont->readU16();
}
}