Fonts trimmed to save quite a bit of space

This commit is contained in:
Krzysiek Egzmont
2023-10-20 16:52:15 +02:00
parent 8629b1b867
commit a37a1ca6ef
4 changed files with 318 additions and 314 deletions

13
font.h
View File

@@ -19,14 +19,13 @@
#include <stdint.h>
//extern const uint8_t gFontBig[95][16];
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 gFont3x5[160][3];
extern const uint8_t gFontSmall[95][6];
extern const uint8_t gFontBig[95 - 1][16 - 2];
extern const uint8_t gFontBigDigits[11][26 - 6];
extern const uint8_t gFont3x5[96][3];
extern const uint8_t gFontSmall[95 - 1][6];
#ifdef ENABLE_SMALL_BOLD
extern const uint8_t gFontSmallBold[95][6];
extern const uint8_t gFontSmallBold[95 - 1][6];
#endif
#endif