summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h4
2 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index bd8ea2f9a6..bd2f0bc802 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -138,7 +138,9 @@ static const struct plugin_api rockbox_api = {
138 lcd_remote_puts, 138 lcd_remote_puts,
139 lcd_remote_puts_scroll, 139 lcd_remote_puts_scroll,
140 lcd_remote_stop_scroll, 140 lcd_remote_stop_scroll,
141#ifndef SIMULATOR
141 lcd_remote_roll, 142 lcd_remote_roll,
143#endif
142 lcd_remote_set_drawmode, 144 lcd_remote_set_drawmode,
143 lcd_remote_get_drawmode, 145 lcd_remote_get_drawmode,
144 lcd_remote_setfont, 146 lcd_remote_setfont,
diff --git a/apps/plugin.h b/apps/plugin.h
index b2e798d0e8..507d36d4e9 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -194,9 +194,9 @@ struct plugin_api {
194 void (*lcd_remote_puts)(int x, int y, const unsigned char *string); 194 void (*lcd_remote_puts)(int x, int y, const unsigned char *string);
195 void (*lcd_remote_lcd_puts_scroll)(int x, int y, const unsigned char* string); 195 void (*lcd_remote_lcd_puts_scroll)(int x, int y, const unsigned char* string);
196 void (*lcd_remote_lcd_stop_scroll)(void); 196 void (*lcd_remote_lcd_stop_scroll)(void);
197 197#ifndef SIMULATOR
198 void (*lcd_remote_roll)(int pixels); 198 void (*lcd_remote_roll)(int pixels);
199 199#endif
200 void (*lcd_remote_set_drawmode)(int mode); 200 void (*lcd_remote_set_drawmode)(int mode);
201 int (*lcd_remote_get_drawmode)(void); 201 int (*lcd_remote_get_drawmode)(void);
202 void (*lcd_remote_setfont)(int font); 202 void (*lcd_remote_setfont)(int font);