diff options
| author | Christi Scarborough <christi@coraline.org> | 2006-01-31 14:29:51 +0000 |
|---|---|---|
| committer | Christi Scarborough <christi@coraline.org> | 2006-01-31 14:29:51 +0000 |
| commit | ae0ae6d5cf85ecd578b58a37a9a1839acf88c2cb (patch) | |
| tree | 4a5717e66ff077a045b5e726e7c457470faea403 /apps/gui/gwps-common.c | |
| parent | cce79d38058efc58b2ca15ef63d06774d8487fe6 (diff) | |
| download | rockbox-ae0ae6d5cf85ecd578b58a37a9a1839acf88c2cb.zip rockbox-ae0ae6d5cf85ecd578b58a37a9a1839acf88c2cb.tar.gz rockbox-ae0ae6d5cf85ecd578b58a37a9a1839acf88c2cb.tar.bz2 rockbox-ae0ae6d5cf85ecd578b58a37a9a1839acf88c2cb.tar.xz | |
Small iPod colour BMP fix by linuxstd
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8504 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/gwps-common.c')
| -rw-r--r-- | apps/gui/gwps-common.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c index 11e92a6..1cda8c0 100644 --- a/apps/gui/gwps-common.c +++ b/apps/gui/gwps-common.c @@ -326,6 +326,10 @@ bool wps_data_preload_tags(struct wps_data *data, char *buf, if (ret > 0) { +#if LCD_DEPTH == 16 + if (ret % 2) ret++; + /* Always consume an even number of bytes */ +#endif /* Update the image cache. */ if (bmp_cache_write && bmp_cache_fd >= 0) { |