aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-06-01 11:52:16 +0200
committerTectu <joel@unormal.org>2012-06-01 11:52:16 +0200
commit5e37443a6f76b120925f1d2f8c0d6d83ab72b22a (patch)
treec4447f9dd657118b5cfcdaf9196872c7e1299237
parent7e9868616cd51ba0acf5a28eeda017d42c0179da (diff)
downloaduGFX-5e37443a6f76b120925f1d2f8c0d6d83ab72b22a.tar.gz
uGFX-5e37443a6f76b120925f1d2f8c0d6d83ab72b22a.tar.bz2
uGFX-5e37443a6f76b120925f1d2f8c0d6d83ab72b22a.zip
fixes
-rw-r--r--touchpad.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/touchpad.c b/touchpad.c
index b7d722cc..d34ea308 100644
--- a/touchpad.c
+++ b/touchpad.c
@@ -29,16 +29,7 @@ uint16_t tpReadX(void) {
x = (((lcdGetWidth()-1) * x)/2048);
- switch(lcdGetOrientation()) {
- case portrait:
- break;
- case portraitInv:
- break;
- case landscape:
- break;
- case landscapeInv:
- break;
- }
+ return x;
}
uint16_t tpReadY(void) {