summaryrefslogtreecommitdiff
path: root/apps/recorder/bmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/bmp.h')
-rw-r--r--apps/recorder/bmp.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/apps/recorder/bmp.h b/apps/recorder/bmp.h
index 946bc6f8b8..c570a3d6bd 100644
--- a/apps/recorder/bmp.h
+++ b/apps/recorder/bmp.h
@@ -52,8 +52,7 @@ struct rowset {
52 short rowstop; 52 short rowstop;
53}; 53};
54 54
55#if (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1) || \ 55#if (LCD_DEPTH > 1) || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)
56 defined(PLUGIN)
57extern const unsigned char dither_table[16]; 56extern const unsigned char dither_table[16];
58#define DITHERY(y) (dither_table[(y) & 15] & 0xAA) 57#define DITHERY(y) (dither_table[(y) & 15] & 0xAA)
59#define DITHERX(x) (dither_table[(x) & 15]) 58#define DITHERX(x) (dither_table[(x) & 15])
@@ -212,9 +211,5 @@ int read_bmp_fd(int fd,
212 int maxsize, 211 int maxsize,
213 int format, 212 int format,
214 const struct custom_format *cformat); 213 const struct custom_format *cformat);
215#ifdef PLUGIN
216struct plugin_api;
217void bmp_init(const struct plugin_api * api);
218#endif
219 214
220#endif 215#endif