From 24a1f94cd7cc50fbda6689d33c5d2dbcf123dab5 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Fri, 24 Jun 2005 23:06:06 +0000 Subject: 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 --- firmware/export/lcd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'firmware/export') 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); #define CLEAR_PIXEL(x,y) lcd_framebuffer[(y)/8][(x)] &= ~(1<<((y)&7)) #define INVERT_PIXEL(x,y) lcd_framebuffer[(y)/8][(x)] ^= (1<<((y)&7)) -typedef void tLCDPixelFunc(int x, int y); /* for b&w */ -typedef void tLCDBlockFunc(unsigned char *address, unsigned mask, unsigned bits); +typedef void lcd_pixelfunc_type(int x, int y); /* for b&w */ +typedef void lcd_blockfunc_type(unsigned char *address, unsigned mask, unsigned bits); /* Memory copy of display bitmap */ extern unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]; -- cgit v1.2.3