summaryrefslogtreecommitdiff
path: root/apps/gui/backdrop.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-01-29 08:25:24 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-01-29 08:25:24 +0000
commitae91e8b693617b53d01725aa9d6e19db748559c4 (patch)
treeba8c41bde6f8e038851ba8b4b9af3e42f3fd5361 /apps/gui/backdrop.h
parent349bf08ed1b31611b6d03694ca044cc296592f66 (diff)
downloadrockbox-ae91e8b693617b53d01725aa9d6e19db748559c4.tar.gz
rockbox-ae91e8b693617b53d01725aa9d6e19db748559c4.zip
fix the last of the red... note to self, fix backdrop.h!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24368 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/backdrop.h')
-rw-r--r--apps/gui/backdrop.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/apps/gui/backdrop.h b/apps/gui/backdrop.h
index 22cdceb28e..2ab379e1cd 100644
--- a/apps/gui/backdrop.h
+++ b/apps/gui/backdrop.h
@@ -35,13 +35,17 @@ void backdrop_show(char* backdrop_buffer);
35#define LCD_BACKDROP_BYTES 0 35#define LCD_BACKDROP_BYTES 0
36#endif 36#endif
37 37
38#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1 && !defined(__PCTOOL__) 38#if defined(HAVE_REMOTE_LCD)
39#define REMOTE_LCD_BACKDROP_BYTES \
40 (LCD_REMOTE_FBHEIGHT*LCD_REMOTE_FBWIDTH*sizeof(fb_remote_data))
41bool remote_backdrop_load(const char *filename, char* backdrop_buffer); 39bool remote_backdrop_load(const char *filename, char* backdrop_buffer);
42void remote_backdrop_show(char* backdrop_buffer); 40void remote_backdrop_show(char* backdrop_buffer);
41
42#if LCD_DEPTH > 1 && LCD_REMOTE_DEPTH > 1 && !defined(__PCTOOL__)
43#define REMOTE_LCD_BACKDROP_BYTES \
44 (LCD_REMOTE_FBHEIGHT*LCD_REMOTE_FBWIDTH*sizeof(fb_remote_data))
43#else 45#else
44#define REMOTE_LCD_BACKDROP_BYTES 0 46#define REMOTE_LCD_BACKDROP_BYTES 0
45#endif 47#endif
46 48
49#endif
50
47#endif /* _BACKDROP_H */ 51#endif /* _BACKDROP_H */