summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-11-07 11:10:43 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-11-07 11:10:43 +0000
commit3772a0872989447a275073eec8d9ced3e38d03a5 (patch)
tree6a8ee9b0a59397e7ef00aa689711c8207892aee4
parentab9caead92eb104d30128b7b6c250dae04406850 (diff)
downloadrockbox-3772a0872989447a275073eec8d9ced3e38d03a5.tar.gz
rockbox-3772a0872989447a275073eec8d9ced3e38d03a5.zip
remove an unused variable and #include
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28526 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/hosted/android/button-android.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/firmware/target/hosted/android/button-android.c b/firmware/target/hosted/android/button-android.c
index 26b6b1380e..9bfc7a370a 100644
--- a/firmware/target/hosted/android/button-android.c
+++ b/firmware/target/hosted/android/button-android.c
@@ -28,10 +28,9 @@
28#include "kernel.h" 28#include "kernel.h"
29#include "system.h" 29#include "system.h"
30#include "touchscreen.h" 30#include "touchscreen.h"
31#include "debug.h" 31
32static int last_y, last_x; 32static int last_y, last_x;
33static int last_btns; 33static int last_btns;
34static long last_button_tick;
35 34
36static enum { 35static enum {
37 STATE_UNKNOWN, 36 STATE_UNKNOWN,