aboutsummaryrefslogtreecommitdiffstats
path: root/glcd.c
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-05-31 14:34:47 +0200
committerTectu <joel@unormal.org>2012-05-31 14:34:47 +0200
commit45aa3779ab15735c5fa53ba8e58de7bdb495c42e (patch)
treee5c862dfb9c778a5940c44a92ff0dd1671ede5cf /glcd.c
parent92329beb902e3ea37f59f05e9898b8b5c94f437e (diff)
downloaduGFX-45aa3779ab15735c5fa53ba8e58de7bdb495c42e.tar.gz
uGFX-45aa3779ab15735c5fa53ba8e58de7bdb495c42e.tar.bz2
uGFX-45aa3779ab15735c5fa53ba8e58de7bdb495c42e.zip
fixes
Diffstat (limited to 'glcd.c')
-rwxr-xr-xglcd.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/glcd.c b/glcd.c
index 55c1dc7a..4d6c4e66 100755
--- a/glcd.c
+++ b/glcd.c
@@ -258,12 +258,6 @@ void lcdDrawLine(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t co
}
}
-void lcdDrawArrow(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t color) {
- lcdDrawLine(x0, y0, x1, y1, color);
- lcdDrawLine(x1, y1, x1-5, y1+5, color);
- lcdDrawLine(x1, y1, x1-5, y1-5, color);
-}
-
void lcdDrawChar(uint16_t x, uint16_t y, unsigned char c, uint16_t charcolor, uint16_t bkcolor) {
uint16_t i = 0;
uint16_t j = 0;