summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-recorder.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2004-09-16 14:36:08 +0000
committerBjörn Stenberg <bjorn@haxx.se>2004-09-16 14:36:08 +0000
commit8b6950493bb281e8aac996219d33188c482b1d67 (patch)
tree3b907795bc72dd61934c5ea6f4f790e047e3f83c /firmware/drivers/lcd-recorder.c
parent82e9438e2e87887c0c917fddf2fa4971261ff83d (diff)
downloadrockbox-8b6950493bb281e8aac996219d33188c482b1d67.tar.gz
rockbox-8b6950493bb281e8aac996219d33188c482b1d67.zip
Moved LCD_WIDHT/HEIGHT from lcd driver to config file.
Simulators now use conig-xxx.h. Added Iriver H100 to tools/configure. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5081 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/lcd-recorder.c')
-rw-r--r--firmware/drivers/lcd-recorder.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/drivers/lcd-recorder.c b/firmware/drivers/lcd-recorder.c
index a711a8fa6d..00fa63cd4e 100644
--- a/firmware/drivers/lcd-recorder.c
+++ b/firmware/drivers/lcd-recorder.c
@@ -106,6 +106,9 @@ static int curfont = FONT_SYSFIXED;
106static int xoffset; /* needed for flip */ 106static int xoffset; /* needed for flip */
107#endif 107#endif
108 108
109int lcd_width = 112;
110int lcd_height = 64;
111
109unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]; 112unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH];
110 113
111/* All zeros and ones bitmaps for area filling */ 114/* All zeros and ones bitmaps for area filling */