diff options
| author | Ben Basha <benbasha@rockbox.org> | 2006-02-01 20:06:25 +0000 |
|---|---|---|
| committer | Ben Basha <benbasha@rockbox.org> | 2006-02-01 20:06:25 +0000 |
| commit | b42ef68a83ad817bd05fa65da0d290835e1f999b (patch) | |
| tree | 42ba95675a60f5556ad770c501ca3c31b5c9c08a /apps/plugin.c | |
| parent | db83601b3cab310b9fdcdb3d56bd37e800f824d5 (diff) | |
| download | rockbox-b42ef68a83ad817bd05fa65da0d290835e1f999b.zip rockbox-b42ef68a83ad817bd05fa65da0d290835e1f999b.tar.gz rockbox-b42ef68a83ad817bd05fa65da0d290835e1f999b.tar.bz2 rockbox-b42ef68a83ad817bd05fa65da0d290835e1f999b.tar.xz | |
Fix warnings at h1xx.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8527 a1c6a512-1295-4272-9138-f99709370657
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) |