summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-02-11 01:06:14 +0000
committerJens Arnold <amiconn@rockbox.org>2005-02-11 01:06:14 +0000
commit0dfc90e70d41507ac51f0fb368f9f93a3403c388 (patch)
tree7aec821d3b0e9de367bddcf7d638e4ba6c1d05e0 /firmware
parent196e4ed5516cb0aa56301a6ebe58d01cc8b2f4d1 (diff)
downloadrockbox-0dfc90e70d41507ac51f0fb368f9f93a3403c388.tar.gz
rockbox-0dfc90e70d41507ac51f0fb368f9f93a3403c388.zip
Made iRiver simulator builds work again.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5895 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/lcd-h100.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-h100.c b/firmware/drivers/lcd-h100.c
index 99b6cb6b79..d27a62da41 100644
--- a/firmware/drivers/lcd-h100.c
+++ b/firmware/drivers/lcd-h100.c
@@ -91,7 +91,11 @@ static int curfont = FONT_SYSFIXED;
91static int xoffset = 0; /* needed for flip */ 91static int xoffset = 0; /* needed for flip */
92#endif 92#endif
93 93
94unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH] __attribute__ ((section(".idata"))); 94unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]
95#ifndef SIMULATOR
96 __attribute__ ((section(".idata")))
97#endif
98 ;
95 99
96/* All zeros and ones bitmaps for area filling */ 100/* All zeros and ones bitmaps for area filling */
97static const unsigned char zeros[16] = { 101static const unsigned char zeros[16] = {