aboutsummaryrefslogtreecommitdiff
path: root/generic/Image.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/Image.c')
-rw-r--r--generic/Image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/Image.c b/generic/Image.c
index d6636e9..723adcb 100644
--- a/generic/Image.c
+++ b/generic/Image.c
@@ -1650,7 +1650,7 @@ ZnGetFontIndex(ZnTexFontInfo tfi,
if (!tgvi) {
return -1;
}
- min = 127;
+ min = 127 - 32;
max = txf->num_glyphs;
while (min < max) {
mid = (min + max) >> 1;
@@ -1665,7 +1665,7 @@ ZnGetFontIndex(ZnTexFontInfo tfi,
min = mid + 1;
}
}
- /*fprintf(stderr, "Tried to access unavailable texture font character %d (Unicode)\n", c);*/
+ //fprintf(stderr, "Tried to access unavailable texture font character %d (Unicode)\n", c);
return -1;
}