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 = { lcd_putc, lcd_put_cursor, lcd_remove_cursor, - lcd_icon, + PREFIX(lcd_icon), #else lcd_putsxy, 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 { void (*lcd_putc)(int x, int y, unsigned short ch); void (*lcd_put_cursor)(int x, int y, char cursor_char); void (*lcd_remove_cursor)(void); - void (*lcd_icon)(int icon, bool enable); + void (*PREFIX(lcd_icon))(int icon, bool enable); #else void (*lcd_putsxy)(int x, int y, const unsigned char *string); void (*lcd_puts_style)(int x, int y, const unsigned char *str, int style);