diff options
author | Jens Arnold <amiconn@rockbox.org> | 2006-02-08 08:05:39 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2006-02-08 08:05:39 +0000 |
commit | bfbbf4705f2d4c1d741b071f64a164b339d1be1a (patch) | |
tree | 7c3681e323f2dacf6c3c4354185cc39b2f10ead2 /apps/plugins/lib | |
parent | 09b9a412f02ad37dca4461f428e93e7fddee7d5e (diff) |
Ooops, small fix.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8620 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib')
-rw-r--r-- | apps/plugins/lib/xlcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/xlcd.c b/apps/plugins/lib/xlcd.c index 9ef2430d6c..8f26330470 100644 --- a/apps/plugins/lib/xlcd.c +++ b/apps/plugins/lib/xlcd.c @@ -297,7 +297,7 @@ void xlcd_color_bitmap_part(const unsigned char *src, int src_x, int src_y, } while (src_row < row_end); - src += stride; + src += 3 * stride; dst += LCD_WIDTH; } while (src < src_end); |