mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 10:37:38 -04:00
Cabbiev2 gigabeat background: reduce WPS backdrop filesize by storing it as 24 bit BMP instead of unnecessary 32 bit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16802 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
38ed901284
commit
9a7978aeab
34 changed files with 410 additions and 426 deletions
|
@ -191,7 +191,8 @@ void grey_ub_scroll_up(int count)
|
|||
_grey_info.fg_brightness :
|
||||
_grey_info.bg_brightness];
|
||||
|
||||
#if LCD_PIXELFORMAT == VERTICAL_PACKING
|
||||
#if (LCD_PIXELFORMAT == VERTICAL_PACKING) \
|
||||
|| (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED)
|
||||
if (count & _GREY_BMASK)
|
||||
{
|
||||
/* Scrolling by fractional blocks - move pixel wise. */
|
||||
|
@ -262,7 +263,8 @@ void grey_ub_scroll_down(int count)
|
|||
_grey_info.fg_brightness :
|
||||
_grey_info.bg_brightness];
|
||||
|
||||
#if LCD_PIXELFORMAT == VERTICAL_PACKING
|
||||
#if (LCD_PIXELFORMAT == VERTICAL_PACKING) \
|
||||
|| (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED)
|
||||
if (count & _GREY_BMASK)
|
||||
{
|
||||
/* Scrolling by fractional blocks - move pixel wise. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue