Fix warning on mrobe100.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30942 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2011-11-08 22:34:35 +00:00
parent a102253cf2
commit 354015ef28

View file

@ -494,9 +494,6 @@ int read_bmp_fd(int fd,
defined(PLUGIN)
bool dither = false;
#endif
#if (LCD_DEPTH > 1 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1)) && \
defined(HAVE_BMP_SCALING) || defined(PLUGIN)
unsigned int resize = IMG_NORESIZE;
#ifdef HAVE_REMOTE_LCD
bool remote = false;
@ -508,6 +505,10 @@ int read_bmp_fd(int fd,
}
#endif /* HAVE_REMOTE_LCD */
#if (LCD_DEPTH > 1 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1)) && \
defined(HAVE_BMP_SCALING) || defined(PLUGIN)
unsigned int resize = IMG_NORESIZE;
if (format & FORMAT_RESIZE) {
resize = IMG_RESIZE;
}