diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-12-24 12:17:26 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-12-24 12:17:26 +0000 |
| commit | 8446cc461c04c796b49a6a37d26769f489a67132 (patch) | |
| tree | 7af9251f49db9cafa456159ffa57b0795be2327e | |
| parent | 5040cc53ec0e0281b2824b3a82d360adc60eff4c (diff) | |
| download | rockbox-8446cc461c04c796b49a6a37d26769f489a67132.zip rockbox-8446cc461c04c796b49a6a37d26769f489a67132.tar.gz rockbox-8446cc461c04c796b49a6a37d26769f489a67132.tar.bz2 rockbox-8446cc461c04c796b49a6a37d26769f489a67132.tar.xz | |
oops, optimized lcd_bitmap() too much, obey the clear flag
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4178 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/drivers/lcd-recorder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-recorder.c b/firmware/drivers/lcd-recorder.c index 910f1dc..08c58e0 100644 --- a/firmware/drivers/lcd-recorder.c +++ b/firmware/drivers/lcd-recorder.c @@ -457,7 +457,7 @@ void lcd_bitmap (unsigned char *src, int x, int y, int nx, int ny, dst2 = &lcd_framebuffer[y/8][x]; /* short cut for byte aligned match (e.g. standard text) */ - if (!shift && ny==8) + if (!shift && clear && ny==8) { memcpy(dst2, src, nx); return; |