diff options
author | Tectu <joel@unormal.org> | 2012-06-01 11:52:16 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-01 11:52:16 +0200 |
commit | 5e37443a6f76b120925f1d2f8c0d6d83ab72b22a (patch) | |
tree | c4447f9dd657118b5cfcdaf9196872c7e1299237 | |
parent | 7e9868616cd51ba0acf5a28eeda017d42c0179da (diff) | |
download | uGFX-5e37443a6f76b120925f1d2f8c0d6d83ab72b22a.tar.gz uGFX-5e37443a6f76b120925f1d2f8c0d6d83ab72b22a.tar.bz2 uGFX-5e37443a6f76b120925f1d2f8c0d6d83ab72b22a.zip |
fixes
-rw-r--r-- | touchpad.c | 11 |
1 files changed, 1 insertions, 10 deletions
@@ -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) { |