summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2012-01-22 22:45:10 +0100
committerThomas Martitz <kugel@rockbox.org>2012-01-22 22:45:10 +0100
commitde1bcfa24f92cc754d3b975cf71796bf7aec0c18 (patch)
tree16c5204458699bcdd20a5f2e01de300d58ab33e2
parentaeae94dbc4075b5aecd62ee7afc08f22c2a20e45 (diff)
downloadrockbox-de1bcfa24f92cc754d3b975cf71796bf7aec0c18.tar.gz
rockbox-de1bcfa24f92cc754d3b975cf71796bf7aec0c18.zip
Fix incomplete comment.
Change-Id: I1874b4e64b3ae19689a0230f10ea623a4d0d1dea
-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.