From 45aa3779ab15735c5fa53ba8e58de7bdb495c42e Mon Sep 17 00:00:00 2001 From: Tectu Date: Thu, 31 May 2012 14:34:47 +0200 Subject: fixes --- glcd.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'glcd.c') 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; -- cgit v1.2.3