diff options
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index d9433d7..32412bc 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -119,8 +119,6 @@ static const struct plugin_api rockbox_api = { lcd_get_background, lcd_bitmap_part, lcd_bitmap, - lcd_bitmap_transparent_part, - lcd_bitmap_transparent, #endif lcd_putsxy, lcd_puts_style, @@ -382,6 +380,10 @@ static const struct plugin_api rockbox_api = { queue_post, queue_wait_w_tmo, usb_acknowledge, +#if LCD_DEPTH == 16 + lcd_bitmap_transparent_part, + lcd_bitmap_transparent, +#endif }; int plugin_load(const char* plugin, void* parameter) |