aboutsummaryrefslogtreecommitdiffstats
path: root/glcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'glcd.c')
-rw-r--r--glcd.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/glcd.c b/glcd.c
index 2ccb769c..e756fc17 100644
--- a/glcd.c
+++ b/glcd.c
@@ -118,8 +118,12 @@ void lcdDrawLine(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t co
}
}
+void lcdSetFont(uint8_t *fnt) {
+ font = fnt;
+}
+
void lcdEnableTransparentText(uint8_t en) {
- tpText=en;
+ tpText = en;
}
void lcdDrawChar(char c) {