summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-11-17 07:17:03 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-11-17 07:17:03 +0000
commit95c00323d3483d9925118c217e302a3147105be3 (patch)
tree31bcfdc0486030583cd1ea9fba11c69b291aa10f /uisimulator
parent5236ca98860a7698c0a768666da20f7418024706 (diff)
downloadrockbox-95c00323d3483d9925118c217e302a3147105be3.tar.gz
rockbox-95c00323d3483d9925118c217e302a3147105be3.zip
repaired the h300 x11 sim build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7922 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/x11/lcd-x11.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/uisimulator/x11/lcd-x11.c b/uisimulator/x11/lcd-x11.c
index 41bf0d1ec0..0a3b40e163 100644
--- a/uisimulator/x11/lcd-x11.c
+++ b/uisimulator/x11/lcd-x11.c
@@ -53,11 +53,9 @@ extern bool lcd_display_redraw;
53 53
54#ifdef HAVE_LCD_BITMAP 54#ifdef HAVE_LCD_BITMAP
55#if LCD_DEPTH==16 55#if LCD_DEPTH==16
56extern unsigned char lcd_framebuffer[LCD_HEIGHT][LCD_WIDTH*2]; 56fb_data lcd_framebuffer_copy[LCD_HEIGHT][LCD_WIDTH*2];
57unsigned char lcd_framebuffer_copy[LCD_HEIGHT][LCD_WIDTH*2];
58#else 57#else
59extern unsigned char lcd_framebuffer[LCD_HEIGHT/YBLOCK][LCD_WIDTH]; 58fb_data lcd_framebuffer_copy[LCD_HEIGHT/YBLOCK][LCD_WIDTH];
60unsigned char lcd_framebuffer_copy[LCD_HEIGHT/YBLOCK][LCD_WIDTH];
61#endif 59#endif
62 60
63void lcd_update (void) 61void lcd_update (void)