summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 659e6dbda3..085cccfc6b 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -120,8 +120,8 @@ struct plugin_api {
120 void (*lcd_unlock_pattern)(unsigned char pat); 120 void (*lcd_unlock_pattern)(unsigned char pat);
121 void (*lcd_putc)(int x, int y, unsigned short ch); 121 void (*lcd_putc)(int x, int y, unsigned short ch);
122#else 122#else
123 void (*lcd_putsxy)(int x, int y, unsigned char *string); 123 void (*lcd_putsxy)(int x, int y, const unsigned char *string);
124 void (*lcd_bitmap)(unsigned char *src, int x, int y, 124 void (*lcd_bitmap)(const unsigned char *src, int x, int y,
125 int nx, int ny, bool clear); 125 int nx, int ny, bool clear);
126 void (*lcd_drawline)(int x1, int y1, int x2, int y2); 126 void (*lcd_drawline)(int x1, int y1, int x2, int y2);
127 void (*lcd_clearline)(int x1, int y1, int x2, int y2); 127 void (*lcd_clearline)(int x1, int y1, int x2, int y2);