From 32d9752dcc73fd1aaa81d484c3d426ca7856b146 Mon Sep 17 00:00:00 2001 From: Andrew Mahone Date: Thu, 8 Jan 2009 08:32:05 +0000 Subject: remove unneeded LCD_DEPTH test in lib/resize.h, add some comments explaining the core-file imports git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19715 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/lib/bmp.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'apps/plugins/lib/bmp.c') diff --git a/apps/plugins/lib/bmp.c b/apps/plugins/lib/bmp.c index b3e0e2b..1cb24d3 100644 --- a/apps/plugins/lib/bmp.c +++ b/apps/plugins/lib/bmp.c @@ -27,7 +27,7 @@ #include "lcd.h" #include "system.h" -#if LCD_DEPTH > 1 +#if LCD_DEPTH > 1 /* save is only available for color, resize for >1bpp */ #ifdef HAVE_LCD_COLOR #define LE16(x) (htole16(x))&0xff, ((htole16(x))>>8)&0xff #define LE32(x) (htole32(x))&0xff, ((htole32(x))>>8)&0xff, ((htole32(x))>>16)&0xff, ((htole32(x))>>24)&0xff @@ -122,13 +122,15 @@ void simple_resize_bitmap(struct bitmap *src, struct bitmap *dst) } } -#else +#else /* LCD_DEPTH == 1 */ #include "wrappers.h" static const struct plugin_api *rb; +/* import the core bmp loader */ #include "../../recorder/bmp.c" +/* initialize rb for use by the bmp loader */ void bmp_init(const struct plugin_api *api) { rb = api; -- cgit v1.1