diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-11-17 07:17:03 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-11-17 07:17:03 +0000 |
| commit | 95c00323d3483d9925118c217e302a3147105be3 (patch) | |
| tree | 31bcfdc0486030583cd1ea9fba11c69b291aa10f | |
| parent | 5236ca98860a7698c0a768666da20f7418024706 (diff) | |
| download | rockbox-95c00323d3483d9925118c217e302a3147105be3.zip rockbox-95c00323d3483d9925118c217e302a3147105be3.tar.gz rockbox-95c00323d3483d9925118c217e302a3147105be3.tar.bz2 rockbox-95c00323d3483d9925118c217e302a3147105be3.tar.xz | |
repaired the h300 x11 sim build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7922 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/x11/lcd-x11.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/uisimulator/x11/lcd-x11.c b/uisimulator/x11/lcd-x11.c index 41bf0d1..0a3b40e 100644 --- a/uisimulator/x11/lcd-x11.c +++ b/uisimulator/x11/lcd-x11.c @@ -53,11 +53,9 @@ extern bool lcd_display_redraw; #ifdef HAVE_LCD_BITMAP #if LCD_DEPTH==16 -extern unsigned char lcd_framebuffer[LCD_HEIGHT][LCD_WIDTH*2]; -unsigned char lcd_framebuffer_copy[LCD_HEIGHT][LCD_WIDTH*2]; +fb_data lcd_framebuffer_copy[LCD_HEIGHT][LCD_WIDTH*2]; #else -extern unsigned char lcd_framebuffer[LCD_HEIGHT/YBLOCK][LCD_WIDTH]; -unsigned char lcd_framebuffer_copy[LCD_HEIGHT/YBLOCK][LCD_WIDTH]; +fb_data lcd_framebuffer_copy[LCD_HEIGHT/YBLOCK][LCD_WIDTH]; #endif void lcd_update (void) |