aboutsummaryrefslogtreecommitdiffstats
path: root/touchpad.c
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-06-11 12:45:20 +0200
committerTectu <joel@unormal.org>2012-06-11 12:45:20 +0200
commit3e75dfd965ffae0f959434e37568136c14b709ae (patch)
treee76d81e7e5056bf24d76c1fbb4189c6597e4ecc9 /touchpad.c
parent2f7c6867a00e9c0a4743ef78f5725c930abbe140 (diff)
downloaduGFX-3e75dfd965ffae0f959434e37568136c14b709ae.tar.gz
uGFX-3e75dfd965ffae0f959434e37568136c14b709ae.tar.bz2
uGFX-3e75dfd965ffae0f959434e37568136c14b709ae.zip
fixed compiler warnings
Diffstat (limited to 'touchpad.c')
-rw-r--r--touchpad.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/touchpad.c b/touchpad.c
index 3bf089db..1430387d 100644
--- a/touchpad.c
+++ b/touchpad.c
@@ -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) {