diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2011-11-08 22:34:35 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2011-11-08 22:34:35 +0000 |
| commit | 354015ef287ff484bf8f8e345102d8c661983805 (patch) | |
| tree | 31723d9f5729cd0608e11d1da08b929046db0b23 /apps | |
| parent | a102253cf2ffaac5d3d54c312d694864d8307b41 (diff) | |
| download | rockbox-354015ef287ff484bf8f8e345102d8c661983805.zip rockbox-354015ef287ff484bf8f8e345102d8c661983805.tar.gz rockbox-354015ef287ff484bf8f8e345102d8c661983805.tar.bz2 rockbox-354015ef287ff484bf8f8e345102d8c661983805.tar.xz | |
Fix warning on mrobe100.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30942 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/recorder/bmp.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/recorder/bmp.c b/apps/recorder/bmp.c index 819d2e6..26be4e4 100644 --- a/apps/recorder/bmp.c +++ b/apps/recorder/bmp.c @@ -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; } |