summaryrefslogtreecommitdiff
path: root/apps/gui/backdrop.h
diff options
context:
space:
mode:
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 */