diff options
author | Tectu <joel@unormal.org> | 2012-07-24 04:01:54 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-07-24 04:01:54 +0200 |
commit | 8d7a588c5185558fdc85da867a37ecf09026bb3c (patch) | |
tree | 5bee141850ff4ced63533094540eff2e20891b19 /gui | |
parent | ccdc62c3345427e4a03de47f6b6deb5d95e1c6f6 (diff) | |
download | uGFX-8d7a588c5185558fdc85da867a37ecf09026bb3c.tar.gz uGFX-8d7a588c5185558fdc85da867a37ecf09026bb3c.tar.bz2 uGFX-8d7a588c5185558fdc85da867a37ecf09026bb3c.zip |
compiler warnings
Diffstat (limited to 'gui')
-rw-r--r-- | gui/gui.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -89,7 +89,7 @@ static inline void buttonUpdate(struct guiNode_t *node) { } static inline void sliderUpdate(struct guiNode_t *node) { - uint16_t length; + uint16_t length = 1; if(node->orientation == horizontal) length = node->x1 - node->x0; @@ -113,8 +113,6 @@ static inline void sliderUpdate(struct guiNode_t *node) { // a bit of safety here if(node->percentage > 100) node->percentage = 100; - if(node->percentage < 0) - node->percentage = 0; if(node->orientation == horizontal) { node->value = ((((node->x1)-(node->x0)) * node->percentage) / 100); @@ -303,6 +301,11 @@ uint8_t guiDrawKeymatrix(uint16_t x0, uint16_t y0, uint16_t size, uint16_t space return 0; // lcdDraw functions + (void)size; + (void)space; + (void)buttonColor; + (void)fontColor; + (void)font; chHeapFree(newNode); |