summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.c3
-rw-r--r--apps/plugin.h2
-rw-r--r--firmware/drivers/button.c2
3 files changed, 6 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index c37b2fb..a205926 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -668,8 +668,9 @@ static const struct plugin_api rockbox_api = {
appsversion,
/* new stuff at the end, sort into place next time
the API gets incompatible */
-
+#ifdef HAVE_BUTTON_DATA
button_status_wdata,
+#endif
};
int plugin_load(const char* plugin, const void* parameter)
diff --git a/apps/plugin.h b/apps/plugin.h
index 344026f..b060104 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -837,7 +837,9 @@ struct plugin_api {
/* new stuff at the end, sort into place next time
the API gets incompatible */
+#ifdef HAVE_BUTTON_DATA
int (*button_status_wdata)(int *pdata);
+#endif
};
/* plugin header */
diff --git a/firmware/drivers/button.c b/firmware/drivers/button.c
index 6e30cb1..088ba0a 100644
--- a/firmware/drivers/button.c
+++ b/firmware/drivers/button.c
@@ -305,7 +305,9 @@ static void button_tick(void)
}
}
lastbtn = btn & ~(BUTTON_REL | BUTTON_REPEAT);
+#ifdef HAVE_BUTTON_DATA
lastdata = data;
+#endif
}
#ifdef HAVE_ADJUSTABLE_CPU_FREQ