diff options
Diffstat (limited to 'apps/plugins/lib/grey_core.c')
-rw-r--r-- | apps/plugins/lib/grey_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/grey_core.c b/apps/plugins/lib/grey_core.c index 18b2716d4d..ea70ae942b 100644 --- a/apps/plugins/lib/grey_core.c +++ b/apps/plugins/lib/grey_core.c | |||
@@ -860,7 +860,7 @@ static void grey_screendump_hook(int fd) | |||
860 | + _GREY_MULUQ(_grey_info.width, gy & ~_GREY_BMASK); | 860 | + _GREY_MULUQ(_grey_info.width, gy & ~_GREY_BMASK); |
861 | 861 | ||
862 | #if LCD_DEPTH == 1 | 862 | #if LCD_DEPTH == 1 |
863 | mask = 1 << (y & 7); | 863 | mask = BIT_N(y & 7); |
864 | src = rb->lcd_framebuffer + _GREY_MULUQ(LCD_WIDTH, y >> 3); | 864 | src = rb->lcd_framebuffer + _GREY_MULUQ(LCD_WIDTH, y >> 3); |
865 | 865 | ||
866 | do | 866 | do |