diff --git a/apps/plugin.c b/apps/plugin.c index bd8ea2f9a6..bd2f0bc802 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -138,7 +138,9 @@ static const struct plugin_api rockbox_api = { lcd_remote_puts, lcd_remote_puts_scroll, lcd_remote_stop_scroll, +#ifndef SIMULATOR lcd_remote_roll, +#endif lcd_remote_set_drawmode, lcd_remote_get_drawmode, lcd_remote_setfont, diff --git a/apps/plugin.h b/apps/plugin.h index b2e798d0e8..507d36d4e9 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -194,9 +194,9 @@ struct plugin_api { void (*lcd_remote_puts)(int x, int y, const unsigned char *string); void (*lcd_remote_lcd_puts_scroll)(int x, int y, const unsigned char* string); void (*lcd_remote_lcd_stop_scroll)(void); - +#ifndef SIMULATOR void (*lcd_remote_roll)(int pixels); - +#endif void (*lcd_remote_set_drawmode)(int mode); int (*lcd_remote_get_drawmode)(void); void (*lcd_remote_setfont)(int font);