diff options
Diffstat (limited to 'firmware/drivers/lcd-ipod.c')
-rw-r--r-- | firmware/drivers/lcd-ipod.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/firmware/drivers/lcd-ipod.c b/firmware/drivers/lcd-ipod.c index 4df47f9f20..2d190d3d70 100644 --- a/firmware/drivers/lcd-ipod.c +++ b/firmware/drivers/lcd-ipod.c @@ -141,19 +141,6 @@ void lcd_blit(const unsigned char* data, int x, int by, int width, (void)stride; } -/* Rolls up the lcd display by the specified amount of lines. - * Lines that are rolled out over the top of the screen are - * rolled in from the bottom again. This is a hardware - * remapping only and all operations on the lcd are affected. - * -> - * @param int lines - The number of lines that are rolled. - * The value must be 0 <= pixels < LCD_HEIGHT. */ -void lcd_roll(int lines) -{ - /* TODO Implement lcd_roll() */ - lines &= LCD_HEIGHT-1; -} - /*** hardware configuration ***/ /* Update the display. @@ -314,19 +301,6 @@ void lcd_set_flip(bool yesno) (void)yesno; } -/* Rolls up the lcd display by the specified amount of lines. - * Lines that are rolled out over the top of the screen are - * rolled in from the bottom again. This is a hardware - * remapping only and all operations on the lcd are affected. - * -> - * @param int lines - The number of lines that are rolled. - * The value must be 0 <= pixels < LCD_HEIGHT. */ -void lcd_roll(int lines) -{ - /* TODO: Implement lcd_roll() */ - lines &= LCD_HEIGHT-1; -} - /* LCD init */ void lcd_init_device(void) { |