summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h2
2 files changed, 0 insertions, 4 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index d80e6a1e0e..eed3be7291 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -200,7 +200,6 @@ static const struct plugin_api rockbox_api = {
200 lcd_blit_pal256, 200 lcd_blit_pal256,
201 lcd_pal256_update_pal, 201 lcd_pal256_update_pal,
202#endif 202#endif
203 lcd_puts_style,
204 lcd_puts_scroll_style, 203 lcd_puts_scroll_style,
205#ifdef HAVE_LCD_INVERT 204#ifdef HAVE_LCD_INVERT
206 lcd_set_invert_display, 205 lcd_set_invert_display,
@@ -260,7 +259,6 @@ static const struct plugin_api rockbox_api = {
260 lcd_remote_mono_bitmap_part, 259 lcd_remote_mono_bitmap_part,
261 lcd_remote_mono_bitmap, 260 lcd_remote_mono_bitmap,
262 lcd_remote_putsxy, 261 lcd_remote_putsxy,
263 lcd_remote_puts_style,
264 lcd_remote_puts_scroll_style, 262 lcd_remote_puts_scroll_style,
265 &lcd_remote_static_framebuffer[0][0], 263 &lcd_remote_static_framebuffer[0][0],
266 lcd_remote_update, 264 lcd_remote_update,
diff --git a/apps/plugin.h b/apps/plugin.h
index 4e6f4a8c4e..237d2f82ee 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -269,7 +269,6 @@ struct plugin_api {
269 int width, int height); 269 int width, int height);
270 void (*lcd_pal256_update_pal)(fb_data *palette); 270 void (*lcd_pal256_update_pal)(fb_data *palette);
271#endif 271#endif
272 void (*lcd_puts_style)(int x, int y, const unsigned char *str, int style);
273 void (*lcd_puts_scroll_style)(int x, int y, const unsigned char* string, 272 void (*lcd_puts_scroll_style)(int x, int y, const unsigned char* string,
274 int style); 273 int style);
275#ifdef HAVE_LCD_INVERT 274#ifdef HAVE_LCD_INVERT
@@ -347,7 +346,6 @@ struct plugin_api {
347 void (*lcd_remote_mono_bitmap)(const unsigned char *src, int x, int y, 346 void (*lcd_remote_mono_bitmap)(const unsigned char *src, int x, int y,
348 int width, int height); 347 int width, int height);
349 void (*lcd_remote_putsxy)(int x, int y, const unsigned char *string); 348 void (*lcd_remote_putsxy)(int x, int y, const unsigned char *string);
350 void (*lcd_remote_puts_style)(int x, int y, const unsigned char *str, int style);
351 void (*lcd_remote_puts_scroll_style)(int x, int y, const unsigned char* string, 349 void (*lcd_remote_puts_scroll_style)(int x, int y, const unsigned char* string,
352 int style); 350 int style);
353 fb_remote_data* lcd_remote_framebuffer; 351 fb_remote_data* lcd_remote_framebuffer;