summaryrefslogtreecommitdiff
path: root/firmware/export/lcd.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-06-24 23:06:06 +0000
committerJens Arnold <amiconn@rockbox.org>2005-06-24 23:06:06 +0000
commit24a1f94cd7cc50fbda6689d33c5d2dbcf123dab5 (patch)
tree1be06cf64f839ea856f28122e0bcd3d8c6182c8c /firmware/export/lcd.h
parent22c1a8e1d97c3fd078067f4e1d2444b3499bd869 (diff)
downloadrockbox-24a1f94cd7cc50fbda6689d33c5d2dbcf123dab5.tar.gz
rockbox-24a1f94cd7cc50fbda6689d33c5d2dbcf123dab5.zip
Fixed yellow FM builds, and changed the function type names according to the rockbox coding style.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6858 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r--firmware/export/lcd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 700ebbf67c..c6e0fe0f0e 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -126,8 +126,8 @@ extern void lcd_jump_scroll_delay(int ms);
126#define CLEAR_PIXEL(x,y) lcd_framebuffer[(y)/8][(x)] &= ~(1<<((y)&7)) 126#define CLEAR_PIXEL(x,y) lcd_framebuffer[(y)/8][(x)] &= ~(1<<((y)&7))
127#define INVERT_PIXEL(x,y) lcd_framebuffer[(y)/8][(x)] ^= (1<<((y)&7)) 127#define INVERT_PIXEL(x,y) lcd_framebuffer[(y)/8][(x)] ^= (1<<((y)&7))
128 128
129typedef void tLCDPixelFunc(int x, int y); /* for b&w */ 129typedef void lcd_pixelfunc_type(int x, int y); /* for b&w */
130typedef void tLCDBlockFunc(unsigned char *address, unsigned mask, unsigned bits); 130typedef void lcd_blockfunc_type(unsigned char *address, unsigned mask, unsigned bits);
131 131
132/* Memory copy of display bitmap */ 132/* Memory copy of display bitmap */
133extern unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]; 133extern unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH];