mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
lcd-16bit: Remove {lss,lse,lst}_pattern fields from struct viewport.
These where used for line styling during scrolling, which is now done in apps/, The viewport struct doesn't need to record these anymore. Change-Id: I810d9dcb2644b00a798c6e75acab69c74a78e77f
This commit is contained in:
parent
deb6ac3693
commit
e1c7b3b8f7
11 changed files with 3 additions and 77 deletions
|
@ -240,11 +240,6 @@ static struct viewport* opt_viewport(lua_State *L, int narg, struct viewport* al
|
|||
#if LCD_DEPTH > 1
|
||||
check_tablevalue(L, "fg_pattern", tablepos, &vp->fg_pattern, true);
|
||||
check_tablevalue(L, "bg_pattern", tablepos, &vp->bg_pattern, true);
|
||||
#ifdef HAVE_LCD_COLOR
|
||||
check_tablevalue(L, "lss_pattern", tablepos, &vp->lss_pattern, true);
|
||||
check_tablevalue(L, "lse_pattern", tablepos, &vp->lse_pattern, true);
|
||||
check_tablevalue(L, "lst_pattern", tablepos, &vp->lst_pattern, true);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
return vp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue