summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 7a88a894d8..d71102701a 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -155,6 +155,14 @@ static struct plugin_api rockbox_api = {
155 atoi, 155 atoi,
156 get_time, 156 get_time,
157 plugin_get_buffer, 157 plugin_get_buffer,
158
159 /* new stuff at the end, sort into place next time the API gets incompatible */
160
161#ifndef HAVE_LCD_CHARCELLS
162 &lcd_framebuffer[0][0],
163 lcd_blit,
164#endif
165 yield,
158}; 166};
159 167
160int plugin_load(char* plugin, void* parameter) 168int plugin_load(char* plugin, void* parameter)