aboutsummaryrefslogtreecommitdiffstats
path: root/glcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'glcd.c')
-rw-r--r--glcd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/glcd.c b/glcd.c
index bb77b0b1..51df22cb 100644
--- a/glcd.c
+++ b/glcd.c
@@ -119,8 +119,8 @@ void lcdSetFont(uint8_t *fnt) {
font = fnt;
}
-void lcdEnableTransparentText(uint8_t en) {
- tpText = en;
+void lcdEnableTransparentText(uint8_t transparency) {
+ tpText = transparency;
}
void lcdDrawChar(char c) {
@@ -132,7 +132,7 @@ void lcdDrawChar(char c) {
// No support for nongraphic characters, so just ignore them
if(c < 0x20 || c > 0x7F) {
- if(c=='\n')
+ if(c == '\n')
lcdLineBreak();
return;
}