From 3f08d8a658b06f29cc54f3a0896cebdeec6b477e Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Wed, 31 Jan 2018 17:33:05 -0500 Subject: Only load 128 glyphs in fbclock There's no point loading more than ASCII since it doesn't interpret the unicode table at all. --- bin/fbclock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/fbclock.c b/bin/fbclock.c index b6da04ec..d99c655d 100644 --- a/bin/fbclock.c +++ b/bin/fbclock.c @@ -65,8 +65,8 @@ int main() { errx(EX_DATAERR, "%s: weird header size %d", fontPath, header.headerSize); } - uint8_t glyphs[header.glyphCount][header.glyphSize]; - count = gzfread(glyphs, header.glyphSize, header.glyphCount, font); + uint8_t glyphs[128][header.glyphSize]; + count = gzfread(glyphs, header.glyphSize, 128, font); if (!count) errx(EX_IOERR, "%s: %s", fontPath, gzerror(font, NULL)); assert(Z_OK == gzclose(font)); -- cgit 1.4.1