summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/lcd-16bit-common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/lcd-16bit-common.c b/firmware/drivers/lcd-16bit-common.c
index 467d9f32a6..1a845675ad 100644
--- a/firmware/drivers/lcd-16bit-common.c
+++ b/firmware/drivers/lcd-16bit-common.c
@@ -587,8 +587,8 @@ void lcd_mono_bitmap(const unsigned char *src, int x, int y, int width, int heig
587 * so two pixels are packed into one byte. 587 * so two pixels are packed into one byte.
588 * The lower nibble is the first pixel, the upper one the second. The stride is 588 * The lower nibble is the first pixel, the upper one the second. The stride is
589 * horizontal. E.g row0: pixel0: byte0[0:3], pixel1: byte0[4:7], pixel2: byte1[0:3],... 589 * horizontal. E.g row0: pixel0: byte0[0:3], pixel1: byte0[4:7], pixel2: byte1[0:3],...
590 * The format is independant of the internal display orientation, as to 590 * The format is independant of the internal display orientation and color
591 * support the same font files on 591 * representation, as to support the same font files on all displays.
592 * The values go linear from 0 (fully transparent) to 15 (fully opaque). 592 * The values go linear from 0 (fully transparent) to 15 (fully opaque).
593 * 593 *
594 * This might suggest that rows need to have an even number of pixels. 594 * This might suggest that rows need to have an even number of pixels.