diff options
author | Jens Arnold <amiconn@rockbox.org> | 2008-03-25 19:57:23 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2008-03-25 19:57:23 +0000 |
commit | 1f4bcc86dac8e57aa2fba4e5b3149fbe52ead323 (patch) | |
tree | a3862957ba38ea22bfd01504c0389d23cb4b09a9 /apps/plugins/lib/grey_scroll.c | |
parent | 386f77b0521433f55811f5735aa7a7df5c422760 (diff) |
Revert accidental tree commit. /me needs a smaller enter key...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16805 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/grey_scroll.c')
-rw-r--r-- | apps/plugins/lib/grey_scroll.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/plugins/lib/grey_scroll.c b/apps/plugins/lib/grey_scroll.c index ba790b035f..12a27daf23 100644 --- a/apps/plugins/lib/grey_scroll.c +++ b/apps/plugins/lib/grey_scroll.c @@ -191,8 +191,7 @@ void grey_ub_scroll_up(int count) _grey_info.fg_brightness : _grey_info.bg_brightness]; -#if (LCD_PIXELFORMAT == VERTICAL_PACKING) \ - || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) +#if LCD_PIXELFORMAT == VERTICAL_PACKING if (count & _GREY_BMASK) { /* Scrolling by fractional blocks - move pixel wise. */ @@ -263,8 +262,7 @@ void grey_ub_scroll_down(int count) _grey_info.fg_brightness : _grey_info.bg_brightness]; -#if (LCD_PIXELFORMAT == VERTICAL_PACKING) \ - || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) +#if LCD_PIXELFORMAT == VERTICAL_PACKING if (count & _GREY_BMASK) { /* Scrolling by fractional blocks - move pixel wise. */ |