summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 8ec4c08258..f8f8fb18d4 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -93,7 +93,7 @@ static const struct plugin_api rockbox_api = {
93 lcd_putc, 93 lcd_putc,
94 lcd_put_cursor, 94 lcd_put_cursor,
95 lcd_remove_cursor, 95 lcd_remove_cursor,
96 lcd_icon, 96 PREFIX(lcd_icon),
97#else 97#else
98 lcd_putsxy, 98 lcd_putsxy,
99 lcd_puts_style, 99 lcd_puts_style,
diff --git a/apps/plugin.h b/apps/plugin.h
index 896565e9a0..ed34d9ac19 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -131,7 +131,7 @@ struct plugin_api {
131 void (*lcd_putc)(int x, int y, unsigned short ch); 131 void (*lcd_putc)(int x, int y, unsigned short ch);
132 void (*lcd_put_cursor)(int x, int y, char cursor_char); 132 void (*lcd_put_cursor)(int x, int y, char cursor_char);
133 void (*lcd_remove_cursor)(void); 133 void (*lcd_remove_cursor)(void);
134 void (*lcd_icon)(int icon, bool enable); 134 void (*PREFIX(lcd_icon))(int icon, bool enable);
135#else 135#else
136 void (*lcd_putsxy)(int x, int y, const unsigned char *string); 136 void (*lcd_putsxy)(int x, int y, const unsigned char *string);
137 void (*lcd_puts_style)(int x, int y, const unsigned char *str, int style); 137 void (*lcd_puts_style)(int x, int y, const unsigned char *str, int style);