forked from len0rd/rockbox
Woops, forgot to change it here too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14931 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a5fcfd1e7f
commit
d10831f157
1 changed files with 0 additions and 8 deletions
|
@ -99,12 +99,8 @@ void lcd_invertscroll(int x, int y)
|
||||||
if((unsigned)y>=LCD_SCROLLABLE_LINES) return;
|
if((unsigned)y>=LCD_SCROLLABLE_LINES) return;
|
||||||
|
|
||||||
s = &lcd_scroll_info.scroll[y];
|
s = &lcd_scroll_info.scroll[y];
|
||||||
#ifdef HAVE_LCD_COLOR
|
|
||||||
s->style = !s->style; /* FIXME: now that the setting isn't bool this seems
|
s->style = !s->style; /* FIXME: now that the setting isn't bool this seems
|
||||||
flawed. */
|
flawed. */
|
||||||
#else
|
|
||||||
s->invert = !s->invert;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void lcd_scroll_step(int step)
|
void lcd_scroll_step(int step)
|
||||||
|
@ -147,12 +143,8 @@ void lcd_remote_invertscroll(int x, int y)
|
||||||
if((unsigned)y>=LCD_REMOTE_SCROLLABLE_LINES) return;
|
if((unsigned)y>=LCD_REMOTE_SCROLLABLE_LINES) return;
|
||||||
|
|
||||||
s = &lcd_remote_scroll_info.scroll[y];
|
s = &lcd_remote_scroll_info.scroll[y];
|
||||||
#ifdef HAVE_LCD_COLOR
|
|
||||||
s->style = !s->style; /* FIXME: now that the setting isn't bool this seems
|
s->style = !s->style; /* FIXME: now that the setting isn't bool this seems
|
||||||
flawed. */
|
flawed. */
|
||||||
#else
|
|
||||||
s->invert = !s->invert;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void lcd_remote_stop_scroll(void)
|
void lcd_remote_stop_scroll(void)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue