summaryrefslogtreecommitdiff
path: root/apps/buffering.c
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2009-05-26 20:26:05 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2009-05-26 20:26:05 +0000
commit00d6cfd389ed5fcd4d0e32ff6fb23fbff01bf1ee (patch)
treec7f25fbd9c453a727f50a5357258abfc3041e151 /apps/buffering.c
parent92785b8f2f20b0fc16de7e771e5eb55fd8497ff8 (diff)
downloadrockbox-00d6cfd389ed5fcd4d0e32ff6fb23fbff01bf1ee.tar.gz
rockbox-00d6cfd389ed5fcd4d0e32ff6fb23fbff01bf1ee.zip
Fix yellow when building with HAVE_ALBUMART, without HAVE_JPEG/HAVE_BMP_SCALING.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21092 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/buffering.c')
-rw-r--r--apps/buffering.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/buffering.c b/apps/buffering.c
index 4f2ec324de..afc444a456 100644
--- a/apps/buffering.c
+++ b/apps/buffering.c
@@ -849,7 +849,9 @@ static int load_image(int fd, const char *path)
849 struct bitmap *bmp = (struct bitmap *)&buffer[buf_widx]; 849 struct bitmap *bmp = (struct bitmap *)&buffer[buf_widx];
850 /* FIXME: alignment may be needed for the data buffer. */ 850 /* FIXME: alignment may be needed for the data buffer. */
851 bmp->data = &buffer[buf_widx + sizeof(struct bitmap)]; 851 bmp->data = &buffer[buf_widx + sizeof(struct bitmap)];
852 852#ifndef HAVE_JPEG
853 (void) path;
854#endif
853#if (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1) 855#if (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)
854 bmp->maskdata = NULL; 856 bmp->maskdata = NULL;
855#endif 857#endif