diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2007-07-25 10:08:51 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2007-07-25 10:08:51 +0000 |
| commit | a55a436993336b37a93d54a2e66de9f9ca60ee7a (patch) | |
| tree | 3b1e51ddda7470ce13e06c938c7020718b8e3229 /apps/plugin.c | |
| parent | ac017781e02e361074fd4da3b3eeb14745f79f03 (diff) | |
| download | rockbox-a55a436993336b37a93d54a2e66de9f9ca60ee7a.zip rockbox-a55a436993336b37a93d54a2e66de9f9ca60ee7a.tar.gz rockbox-a55a436993336b37a93d54a2e66de9f9ca60ee7a.tar.bz2 rockbox-a55a436993336b37a93d54a2e66de9f9ca60ee7a.tar.xz | |
fixed yellow, forgot to increase the plugin API version
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13979 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 5c849e3..14519e1 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -87,7 +87,6 @@ static const struct plugin_api rockbox_api = { lcd_icon, lcd_double_height, #else - screen_clear_area, lcd_set_drawmode, lcd_get_drawmode, lcd_setfont, @@ -491,6 +490,9 @@ static const struct plugin_api rockbox_api = { get_codec_filename, get_metadata, #endif +#ifdef HAVE_LCD_BITMAP + screen_clear_area, +#endif }; int plugin_load(const char* plugin, void* parameter) |