diff options
author | Tectu <joel@unormal.org> | 2012-06-11 12:45:20 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-11 12:45:20 +0200 |
commit | 3e75dfd965ffae0f959434e37568136c14b709ae (patch) | |
tree | e76d81e7e5056bf24d76c1fbb4189c6597e4ecc9 /touchpad.c | |
parent | 2f7c6867a00e9c0a4743ef78f5725c930abbe140 (diff) | |
download | uGFX-3e75dfd965ffae0f959434e37568136c14b709ae.tar.gz uGFX-3e75dfd965ffae0f959434e37568136c14b709ae.tar.bz2 uGFX-3e75dfd965ffae0f959434e37568136c14b709ae.zip |
fixed compiler warnings
Diffstat (limited to 'touchpad.c')
-rw-r--r-- | touchpad.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -98,6 +98,8 @@ uint16_t tpReadX(void) { case landscapeInv: return y; } + + return x; } uint16_t tpReadY(void) { @@ -116,6 +118,8 @@ uint16_t tpReadY(void) { case landscapeInv: return SCREEN_WIDTH - x; } + + return y; } static void tpDrawCross(uint16_t x, uint16_t y) { |