summaryrefslogtreecommitdiff
path: root/apps/recorder/backdrop.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/backdrop.c')
-rw-r--r--apps/recorder/backdrop.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/recorder/backdrop.c b/apps/recorder/backdrop.c
index d230a6ec5a..374dba9f4b 100644
--- a/apps/recorder/backdrop.c
+++ b/apps/recorder/backdrop.c
@@ -36,7 +36,8 @@ bool load_backdrop(char* filename, fb_data* backdrop_buffer)
36 36
37 /* load the image */ 37 /* load the image */
38 bm.data=(char*)backdrop_buffer; 38 bm.data=(char*)backdrop_buffer;
39 ret = read_bmp_file(filename, &bm, sizeof(main_backdrop), FORMAT_NATIVE); 39 ret = read_bmp_file(filename, &bm, sizeof(main_backdrop),
40 FORMAT_NATIVE | FORMAT_DITHER);
40 41
41 if ((ret > 0) && (bm.width == LCD_WIDTH) && (bm.height == LCD_HEIGHT)) 42 if ((ret > 0) && (bm.width == LCD_WIDTH) && (bm.height == LCD_HEIGHT))
42 { 43 {