summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootloader/ipod.c4
-rw-r--r--firmware/drivers/lcd-ipod.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/bootloader/ipod.c b/bootloader/ipod.c
index 591b760..03a814f 100644
--- a/bootloader/ipod.c
+++ b/bootloader/ipod.c
@@ -346,10 +346,10 @@ void* main(void)
/* Notes: iPod Color/Photo LCD is 220x176, Nano is 176x138 */
/* Display the 42x47 pixel iPodLinux logo */
- lcd_bitmap((unsigned char*)ipllogo, 20,6, 42,47);
+ lcd_bitmap(ipllogo, 20,6, 42,47);
/* Display the 100x31 pixel Rockbox logo */
- lcd_bitmap((unsigned char*)rockboxlogo, 74,16, 100,31);
+ lcd_bitmap(rockboxlogo, 74,16, 100,31);
line=7;
diff --git a/firmware/drivers/lcd-ipod.c b/firmware/drivers/lcd-ipod.c
index ebb5d3c..30cd455 100644
--- a/firmware/drivers/lcd-ipod.c
+++ b/firmware/drivers/lcd-ipod.c
@@ -204,7 +204,7 @@ void lcd_init_device(void)
/* Performance function that works with an external buffer
note that by and bheight are in 4-pixel units! */
-void lcd_blit(const unsigned char* data, int x, int by, int width,
+void lcd_blit(const fb_data* data, int x, int by, int width,
int bheight, int stride)
{
/* TODO: Implement lcd_blit() */