summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 30c04ce76c..1563ed3aec 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -144,7 +144,6 @@ struct plugin_api {
144 /* lcd */ 144 /* lcd */
145 void (*lcd_set_contrast)(int x); 145 void (*lcd_set_contrast)(int x);
146 void (*lcd_update)(void); 146 void (*lcd_update)(void);
147 void (*lcd_update_rect)(int x, int y, int width, int height);
148 void (*lcd_clear_display)(void); 147 void (*lcd_clear_display)(void);
149 void (*lcd_setmargins)(int x, int y); 148 void (*lcd_setmargins)(int x, int y);
150 int (*lcd_getstringsize)(const unsigned char *str, int *w, int *h); 149 int (*lcd_getstringsize)(const unsigned char *str, int *w, int *h);
@@ -163,6 +162,7 @@ struct plugin_api {
163 void (*lcd_double_height)(bool on); 162 void (*lcd_double_height)(bool on);
164#else /* HAVE_LCD_BITMAP */ 163#else /* HAVE_LCD_BITMAP */
165 fb_data* lcd_framebuffer; 164 fb_data* lcd_framebuffer;
165 void (*lcd_update_rect)(int x, int y, int width, int height);
166 void (*lcd_set_drawmode)(int mode); 166 void (*lcd_set_drawmode)(int mode);
167 int (*lcd_get_drawmode)(void); 167 int (*lcd_get_drawmode)(void);
168 void (*lcd_setfont)(int font); 168 void (*lcd_setfont)(int font);