summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy')
-rw-r--r--apps/plugins/rockboy/rockboy.c2
-rw-r--r--apps/plugins/rockboy/rockmacros.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/rockboy/rockboy.c b/apps/plugins/rockboy/rockboy.c
index 57dbd21590..1addef2e44 100644
--- a/apps/plugins/rockboy/rockboy.c
+++ b/apps/plugins/rockboy/rockboy.c
@@ -32,7 +32,7 @@ PLUGIN_IRAM_DECLARE
32/* here is a global api struct pointer. while not strictly necessary, 32/* here is a global api struct pointer. while not strictly necessary,
33 it's nice not to have to pass the api pointer in all function calls 33 it's nice not to have to pass the api pointer in all function calls
34 in the plugin */ 34 in the plugin */
35bool plugbuf; 35const struct plugin_api* rb;
36int shut,cleanshut; 36int shut,cleanshut;
37char *errormsg; 37char *errormsg;
38 38
diff --git a/apps/plugins/rockboy/rockmacros.h b/apps/plugins/rockboy/rockmacros.h
index b60f1e9763..179de2313f 100644
--- a/apps/plugins/rockboy/rockmacros.h
+++ b/apps/plugins/rockboy/rockmacros.h
@@ -109,7 +109,7 @@ struct options {
109 int dirty; 109 int dirty;
110}; 110};
111 111
112extern bool plugbuf; 112bool plugbuf;
113 113
114extern struct options options; 114extern struct options options;
115#define savedir ROCKBOX_DIR "/rockboy" 115#define savedir ROCKBOX_DIR "/rockboy"