diff options
| -rw-r--r-- | apps/plugin.c | 2 | ||||
| -rw-r--r-- | apps/plugin.h | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index c0cdbd8..b909a55 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -80,7 +80,9 @@ char *plugin_get_current_filename(void); static const struct plugin_api rockbox_api = { /* lcd */ +#ifdef HAVE_LCD_CONTRAST lcd_set_contrast, +#endif lcd_update, lcd_clear_display, lcd_getstringsize, diff --git a/apps/plugin.h b/apps/plugin.h index d261ea5..97c9512 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -151,7 +151,10 @@ enum plugin_status { struct plugin_api { /* lcd */ + +#ifdef HAVE_LCD_CONTRAST void (*lcd_set_contrast)(int x); +#endif void (*lcd_update)(void); void (*lcd_clear_display)(void); int (*lcd_getstringsize)(const unsigned char *str, int *w, int *h); |