summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-06-23 17:13:05 +0000
committerJens Arnold <amiconn@rockbox.org>2005-06-23 17:13:05 +0000
commit9cedf39430ad5615e3f27df3ab02e942d8ec1732 (patch)
tree54e45fa2b26d6d593b2d1c0ba0a55c1d21229a1a /firmware
parent6a556c1740174d76da3f652de2a4ca0777b931c4 (diff)
downloadrockbox-9cedf39430ad5615e3f27df3ab02e942d8ec1732.tar.gz
rockbox-9cedf39430ad5615e3f27df3ab02e942d8ec1732.zip
Fix red builds.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6845 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/lcd-h100-remote.c2
-rw-r--r--firmware/export/lcd-remote.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-h100-remote.c b/firmware/drivers/lcd-h100-remote.c
index 4798a51743..181fcc24fc 100644
--- a/firmware/drivers/lcd-h100-remote.c
+++ b/firmware/drivers/lcd-h100-remote.c
@@ -98,7 +98,9 @@ static const unsigned char ones[8] = {
98 98
99/* scrolling */ 99/* scrolling */
100static volatile int scrolling_lines=0; /* Bitpattern of which lines are scrolling */ 100static volatile int scrolling_lines=0; /* Bitpattern of which lines are scrolling */
101#ifndef SIMULATOR
101static void scroll_thread(void); 102static void scroll_thread(void);
103#endif
102static long scroll_stack[DEFAULT_STACK_SIZE/sizeof(long)]; 104static long scroll_stack[DEFAULT_STACK_SIZE/sizeof(long)];
103static const char scroll_name[] = "remote_scroll"; 105static const char scroll_name[] = "remote_scroll";
104static char scroll_ticks = 12; /* # of ticks between updates*/ 106static char scroll_ticks = 12; /* # of ticks between updates*/
diff --git a/firmware/export/lcd-remote.h b/firmware/export/lcd-remote.h
index 58133fc7ce..c5793eda93 100644
--- a/firmware/export/lcd-remote.h
+++ b/firmware/export/lcd-remote.h
@@ -52,7 +52,7 @@ extern void lcd_remote_puts_scroll_style(int x, int y, const unsigned char* stri
52 int style); 52 int style);
53 53
54extern void lcd_remote_update(void); 54extern void lcd_remote_update(void);
55extern void lcd_remote_update_rect int x_start, int y, int width, int height); 55extern void lcd_remote_update_rect(int x_start, int y, int width, int height);
56 56
57/* Memory copy of display bitmap */ 57/* Memory copy of display bitmap */
58extern unsigned char lcd_remote_framebuffer[LCD_REMOTE_HEIGHT/8][LCD_REMOTE_WIDTH]; 58extern unsigned char lcd_remote_framebuffer[LCD_REMOTE_HEIGHT/8][LCD_REMOTE_WIDTH];