forked from len0rd/rockbox
declare the lcd_framebuffer "nicer" in the #ifdef
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2593 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1017e25438
commit
8279abe38e
1 changed files with 3 additions and 4 deletions
|
|
@ -90,11 +90,10 @@ static int xmargin = 0;
|
|||
static int ymargin = 0;
|
||||
static int curfont = FONT_SYSFIXED;
|
||||
|
||||
#ifdef SIMULATOR
|
||||
unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8];
|
||||
#else
|
||||
static unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8];
|
||||
#ifndef SIMULATOR
|
||||
static
|
||||
#endif
|
||||
unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8];
|
||||
|
||||
/* All zeros and ones bitmaps for area filling */
|
||||
static unsigned char zeros[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue