aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--glcd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/glcd.c b/glcd.c
index a28681d2..6f03c664 100644
--- a/glcd.c
+++ b/glcd.c
@@ -173,7 +173,8 @@ void lcdDrawChar(char c) {
}
void lcdPutString(const char *str) {
- while (*str) lcdDrawChar(*str++);
+ while(*str)
+ lcdDrawChar(*str++);
}
void lcdDrawString(uint16_t x, uint16_t y, const char *str, uint16_t color, uint16_t bkcolor) {