diff --git a/font.c b/font.c index 768ed94..b820807 100644 --- a/font.c +++ b/font.c @@ -165,7 +165,7 @@ const uint8_t gFontSmallDigits[11][7] = {0x00, 0x08, 0x08, 0x08, 0x08, 0x08, 0x00} // '-' }; */ -const uint8_t gFontSmall[95][7] = +const uint8_t gFontSmall[95][6] = { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // ' ' {0x00, 0x00, 0x5E, 0x00, 0x00, 0x00}, // '!' @@ -265,7 +265,7 @@ const uint8_t gFontSmall[95][7] = }; #ifdef ENABLE_SMALL_BOLD - const uint8_t gFontSmallBold[95][7] = + const uint8_t gFontSmallBold[95][6] = { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, {0x00, 0x00, 0x5E, 0x5E, 0x00, 0x00}, diff --git a/font.h b/font.h index e548d7f..1c07fb8 100644 --- a/font.h +++ b/font.h @@ -23,9 +23,9 @@ extern const uint8_t gFontBig[95][15]; extern const uint8_t gFontBigDigits[11][26]; //extern const uint8_t gFontSmallDigits[11][7]; -extern const uint8_t gFontSmall[95][7]; +extern const uint8_t gFontSmall[95][6]; #ifdef ENABLE_SMALL_BOLD - extern const uint8_t gFontSmallBold[95][7]; + extern const uint8_t gFontSmallBold[95][6]; #endif #endif