(PSP) add alignement requirement to menu_framebuf in rgui.c
This commit is contained in:
parent
92161fcb2c
commit
5ce55a8dfa
|
@ -41,7 +41,11 @@
|
||||||
#define HAVE_SHADER_MANAGER
|
#define HAVE_SHADER_MANAGER
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(PSP)
|
||||||
|
static uint16_t __attribute((aligned(64))) menu_framebuf[400 * 240];
|
||||||
|
#else
|
||||||
static uint16_t menu_framebuf[400 * 240];
|
static uint16_t menu_framebuf[400 * 240];
|
||||||
|
#endif
|
||||||
|
|
||||||
#define TERM_START_X 15
|
#define TERM_START_X 15
|
||||||
#define TERM_START_Y 27
|
#define TERM_START_Y 27
|
||||||
|
|
Loading…
Reference in New Issue