diff options
author | Tectu <joel@unormal.org> | 2012-06-13 22:32:14 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-13 22:32:14 +0200 |
commit | b0b85efa187e93ab17d178146507f02c10eeb910 (patch) | |
tree | 32dde60bf40fca8e76ff5b5de1b7e596badfd96b | |
parent | 4d4acdd9d19e8d3cbca7020c0447dc30fb667863 (diff) | |
download | uGFX-b0b85efa187e93ab17d178146507f02c10eeb910.tar.gz uGFX-b0b85efa187e93ab17d178146507f02c10eeb910.tar.bz2 uGFX-b0b85efa187e93ab17d178146507f02c10eeb910.zip |
cleanup
-rw-r--r-- | glcd.c | 6 | ||||
-rw-r--r-- | glcd.h | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -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; } @@ -53,7 +53,7 @@ void lcdDrawRect(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint8_t fil void lcdDrawRectString(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, const char* str, uint16_t fontColor, uint16_t bkColor); void lcdDrawCircle(uint16_t x, uint16_t y, uint16_t radius, uint8_t filled, uint16_t color); -void lcdEnableTransparentText(uint8_t en); +void lcdEnableTransparentText(uint8_t transparency); void lcdSetFont(uint8_t *fnt); void lcdDrawChar(char c); void lcdPutString(const char *str); |