diff options
| author | Greg White <gwhite@rockbox.org> | 2007-01-14 03:29:32 +0000 |
|---|---|---|
| committer | Greg White <gwhite@rockbox.org> | 2007-01-14 03:29:32 +0000 |
| commit | 0262cba304a47d9dc689bfbd3538b4b41c5b21c5 (patch) | |
| tree | 726f33db3a8503e45aab2f96e22c6362d3e4df42 /apps | |
| parent | b26f4720c8e4f87c4479275323f6e4754da249cc (diff) | |
| download | rockbox-0262cba304a47d9dc689bfbd3538b4b41c5b21c5.zip rockbox-0262cba304a47d9dc689bfbd3538b4b41c5b21c5.tar.gz rockbox-0262cba304a47d9dc689bfbd3538b4b41c5b21c5.tar.bz2 rockbox-0262cba304a47d9dc689bfbd3538b4b41c5b21c5.tar.xz | |
Align backdrop buffers
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12003 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/recorder/backdrop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/backdrop.c b/apps/recorder/backdrop.c index e178534..cb6aaa5 100644 --- a/apps/recorder/backdrop.c +++ b/apps/recorder/backdrop.c @@ -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]; |