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 ymargin = 0;
|
||||||
static int curfont = FONT_SYSFIXED;
|
static int curfont = FONT_SYSFIXED;
|
||||||
|
|
||||||
#ifdef SIMULATOR
|
#ifndef SIMULATOR
|
||||||
unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8];
|
static
|
||||||
#else
|
|
||||||
static unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8];
|
|
||||||
#endif
|
#endif
|
||||||
|
unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8];
|
||||||
|
|
||||||
/* All zeros and ones bitmaps for area filling */
|
/* All zeros and ones bitmaps for area filling */
|
||||||
static unsigned char zeros[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
|
static unsigned char zeros[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue