small cleanup
This commit is contained in:
parent
534957a2d3
commit
096e6c4ed9
1 changed files with 2 additions and 1 deletions
3
glcd.c
3
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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue