aboutsummaryrefslogtreecommitdiffstats
path: root/glcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'glcd.c')
-rw-r--r--glcd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/glcd.c b/glcd.c
index 51df22cb..f50c696d 100644
--- a/glcd.c
+++ b/glcd.c
@@ -14,6 +14,8 @@ void lcdInit(void) {
lcd_width = SCREEN_WIDTH;
lcd_height = SCREEN_HEIGHT;
+ lcdSetOrientation(portrait);
+ lcdSetFontTransparency(transparent);
lcdSetFont(font_MediumBold);
}
@@ -119,7 +121,7 @@ void lcdSetFont(uint8_t *fnt) {
font = fnt;
}
-void lcdEnableTransparentText(uint8_t transparency) {
+void lcdSetFontTransparency(uint8_t transparency) {
tpText = transparency;
}