diff options
author | Thomas Martitz <kugel@rockbox.org> | 2012-01-22 22:45:10 +0100 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2012-01-22 22:45:10 +0100 |
commit | de1bcfa24f92cc754d3b975cf71796bf7aec0c18 (patch) | |
tree | 16c5204458699bcdd20a5f2e01de300d58ab33e2 /firmware/drivers | |
parent | aeae94dbc4075b5aecd62ee7afc08f22c2a20e45 (diff) |
Fix incomplete comment.
Change-Id: I1874b4e64b3ae19689a0230f10ea623a4d0d1dea
Diffstat (limited to 'firmware/drivers')
-rw-r--r-- | firmware/drivers/lcd-16bit-common.c | 4 |
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 * so two pixels are packed into one byte. * The lower nibble is the first pixel, the upper one the second. The stride is * horizontal. E.g row0: pixel0: byte0[0:3], pixel1: byte0[4:7], pixel2: byte1[0:3],... - * The format is independant of the internal display orientation, as to - * support the same font files on + * The format is independant of the internal display orientation and color + * representation, as to support the same font files on all displays. * The values go linear from 0 (fully transparent) to 15 (fully opaque). * * This might suggest that rows need to have an even number of pixels. |