small cleanup

This commit is contained in:
Tectu 2012-06-17 04:23:59 +02:00
parent 534957a2d3
commit 096e6c4ed9

3
glcd.c
View file

@ -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) {