summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/recorder/backdrop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/backdrop.c b/apps/recorder/backdrop.c
index e17853493d..cb6aaa5a32 100644
--- a/apps/recorder/backdrop.c
+++ b/apps/recorder/backdrop.c
@@ -23,8 +23,8 @@
23#include "backdrop.h" 23#include "backdrop.h"
24 24
25#if LCD_DEPTH >= 8 25#if LCD_DEPTH >= 8
26static fb_data main_backdrop[LCD_HEIGHT][LCD_WIDTH]; 26static fb_data main_backdrop[LCD_HEIGHT][LCD_WIDTH] __attribute__ ((aligned (16)));
27static fb_data wps_backdrop[LCD_HEIGHT][LCD_WIDTH]; 27static fb_data wps_backdrop[LCD_HEIGHT][LCD_WIDTH] __attribute__ ((aligned (16)));
28#elif LCD_DEPTH == 2 28#elif LCD_DEPTH == 2
29#if LCD_PIXELFORMAT == VERTICAL_PACKING 29#if LCD_PIXELFORMAT == VERTICAL_PACKING
30static fb_data main_backdrop[(LCD_HEIGHT+3)/4][LCD_WIDTH]; 30static fb_data main_backdrop[(LCD_HEIGHT+3)/4][LCD_WIDTH];