1
0
Fork 0
forked from len0rd/rockbox

fix a bug where the backdrop from the sbs is displayed on scrolling lines in the wps when the %wd tag is not used.

I'm not crazy about this commit and maybe a better solution would be to outright disable the sbs backdrop when in any skinned screen. This then means backdrops go back to needing special handling (i.e they arnt "free")



git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24478 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2010-02-03 07:03:48 +00:00
parent eb30ca2a1e
commit 0a16a99a69
3 changed files with 20 additions and 3 deletions

View file

@ -55,6 +55,9 @@ struct scrollinfo
int offset;
int startx;
#ifdef HAVE_LCD_BITMAP
#if LCD_DEPTH > 1 || (defined(HAVE_LCD_REMOTE) && LCD_REMOTE_DEPTH > 1)
char *backdrop;
#endif
int width; /* length of line in pixels */
int style; /* line style */
#endif/* HAVE_LCD_BITMAP */