Align backdrop buffers
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12003 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b26f4720c8
commit
0262cba304
1 changed files with 2 additions and 2 deletions
|
@ -23,8 +23,8 @@
|
|||
#include "backdrop.h"
|
||||
|
||||
#if LCD_DEPTH >= 8
|
||||
static fb_data main_backdrop[LCD_HEIGHT][LCD_WIDTH];
|
||||
static fb_data wps_backdrop[LCD_HEIGHT][LCD_WIDTH];
|
||||
static fb_data main_backdrop[LCD_HEIGHT][LCD_WIDTH] __attribute__ ((aligned (16)));
|
||||
static fb_data wps_backdrop[LCD_HEIGHT][LCD_WIDTH] __attribute__ ((aligned (16)));
|
||||
#elif LCD_DEPTH == 2
|
||||
#if LCD_PIXELFORMAT == VERTICAL_PACKING
|
||||
static fb_data main_backdrop[(LCD_HEIGHT+3)/4][LCD_WIDTH];
|
||||
|
|
Loading…
Reference in a new issue