aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-06-14 12:16:34 +0200
committerKumar Abhishek <abhishek@kumar>2012-06-14 17:13:17 +0530
commit452bfcc059918e1b10c64ad81d224f9684540ce6 (patch)
tree9b68f0585f2fe85d892d0d1d60483e8020d99dfa
parent3be667c90e2ef8f1de5f85b16a7b78d6e910e2f7 (diff)
downloaduGFX-452bfcc059918e1b10c64ad81d224f9684540ce6.tar.gz
uGFX-452bfcc059918e1b10c64ad81d224f9684540ce6.tar.bz2
uGFX-452bfcc059918e1b10c64ad81d224f9684540ce6.zip
cleanups
-rw-r--r--glcd.c5
-rw-r--r--glcd.h4
2 files changed, 9 insertions, 0 deletions
diff --git a/glcd.c b/glcd.c
index 42685439..e8498961 100644
--- a/glcd.c
+++ b/glcd.c
@@ -117,8 +117,13 @@ void lcdDrawLine(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t co
}
}
+<<<<<<< HEAD
void lcdSetFont(const uint8_t *fnt) {
font = fnt;
+=======
+void lcdSetFont(const uint8_t *newFont) {
+ font = newFont;
+>>>>>>> cleanups
}
void lcdSetFontTransparency(uint8_t transparency) {
diff --git a/glcd.h b/glcd.h
index 69d5c6ed..c67541c9 100644
--- a/glcd.h
+++ b/glcd.h
@@ -55,7 +55,11 @@ void lcdDrawRectString(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, const
void lcdDrawCircle(uint16_t x, uint16_t y, uint16_t radius, uint8_t filled, uint16_t color);
void lcdSetFontTransparency(uint8_t transparency);
+<<<<<<< HEAD
void lcdSetFont(const uint8_t *fnt);
+=======
+void lcdSetFont(const uint8_t *newFont);
+>>>>>>> cleanups
void lcdDrawChar(char c);
void lcdPutString(const char *str);
void lcdDrawString(uint16_t x, uint16_t y, const char *str, uint16_t color, uint16_t bkcolor);