(PSP) add alignement requirement to menu_framebuf in rgui.c

This commit is contained in:
aliaspider 2014-02-23 18:32:46 +01:00
parent 92161fcb2c
commit 5ce55a8dfa
1 changed files with 4 additions and 0 deletions

View File

@ -41,7 +41,11 @@
#define HAVE_SHADER_MANAGER
#endif
#if defined(PSP)
static uint16_t __attribute((aligned(64))) menu_framebuf[400 * 240];
#else
static uint16_t menu_framebuf[400 * 240];
#endif
#define TERM_START_X 15
#define TERM_START_Y 27