diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-06-24 23:06:06 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-06-24 23:06:06 +0000 |
| commit | 24a1f94cd7cc50fbda6689d33c5d2dbcf123dab5 (patch) | |
| tree | 1be06cf64f839ea856f28122e0bcd3d8c6182c8c /firmware/export | |
| parent | 22c1a8e1d97c3fd078067f4e1d2444b3499bd869 (diff) | |
| download | rockbox-24a1f94cd7cc50fbda6689d33c5d2dbcf123dab5.zip rockbox-24a1f94cd7cc50fbda6689d33c5d2dbcf123dab5.tar.gz rockbox-24a1f94cd7cc50fbda6689d33c5d2dbcf123dab5.tar.bz2 rockbox-24a1f94cd7cc50fbda6689d33c5d2dbcf123dab5.tar.xz | |
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')
| -rw-r--r-- | firmware/export/lcd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h index 700ebbf..c6e0fe0 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]; |