small cleanup

ugfx_release_2.6
Tectu 2012-06-17 04:23:59 +02:00
parent 534957a2d3
commit 096e6c4ed9
1 changed files with 2 additions and 1 deletions

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