aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-07-09 02:38:35 +0200
committerTectu <joel@unormal.org>2012-07-09 02:38:35 +0200
commit9d498150f7fdb0ae4942163708ae24c460d1f928 (patch)
tree0933fcb3d9da1307800a13904224b5ad7fd9f103
parent45fc0a8c7bd147168529813dd029d15d38fe5738 (diff)
downloaduGFX-9d498150f7fdb0ae4942163708ae24c460d1f928.tar.gz
uGFX-9d498150f7fdb0ae4942163708ae24c460d1f928.tar.bz2
uGFX-9d498150f7fdb0ae4942163708ae24c460d1f928.zip
compiler warnings
-rw-r--r--gui.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gui.c b/gui.c
index 6ee34c1f..5bafb640 100644
--- a/gui.c
+++ b/gui.c
@@ -189,6 +189,9 @@ uint8_t guiDrawSlider(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint8_
if(addElement(newNode) != 1)
return 0;
+ (void)frameColor;
+ (void)bkColor;
+ (void)valueColor;
// lcdDraw functions
chHeapFree(newNode);
@@ -215,6 +218,8 @@ uint8_t guiDrawWheel(uint16_t x0, uint16_t y0, uint16_t radius1, uint16_t radius
if(addElement(newNode) != 1)
return 0;
+ (void)bkColor;
+ (void)valueColor;
// lcdDraw functions
chHeapFree(newNode);