summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-16bit-common.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-16bit-common.c')
-rw-r--r--firmware/drivers/lcd-16bit-common.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-16bit-common.c b/firmware/drivers/lcd-16bit-common.c
index 9d24dfe16e..ab136bf238 100644
--- a/firmware/drivers/lcd-16bit-common.c
+++ b/firmware/drivers/lcd-16bit-common.c
@@ -335,7 +335,7 @@ void lcd_mono_bitmap(const unsigned char *src, int x, int y, int width, int heig
335 lcd_mono_bitmap_part(src, 0, 0, width, x, y, width, height); 335 lcd_mono_bitmap_part(src, 0, 0, width, x, y, width, height);
336} 336}
337 337
338 338#ifndef DISABLE_ALPHA_BITMAP
339/* About Rockbox' internal alpha channel format (for ALPHA_BPP == 4) 339/* About Rockbox' internal alpha channel format (for ALPHA_BPP == 4)
340 * 340 *
341 * For each pixel, 4bit of alpha information is stored in a byte-stream, 341 * For each pixel, 4bit of alpha information is stored in a byte-stream,
@@ -654,3 +654,4 @@ static void ICODE_ATTR lcd_alpha_bitmap_part_mix(
654 654
655 BLEND_FINISH; 655 BLEND_FINISH;
656} 656}
657#endif /* !DISABLE_ALPHA_BITMAP */ \ No newline at end of file