summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-09-24 12:38:08 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-09-24 12:38:08 +0000
commita4d9fe3954e0f92b806c6b05851bf43825cad5ad (patch)
treedf1cb697fcf92d22eacebc1cfc0f62dcc24e7d7c
parente770bc8be0717199e244ffe3756d866f25831e25 (diff)
downloadrockbox-a4d9fe3954e0f92b806c6b05851bf43825cad5ad.tar.gz
rockbox-a4d9fe3954e0f92b806c6b05851bf43825cad5ad.zip
Corrected the ones[] and zeros[] arrays
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2387 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/drivers/lcd-recorder.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/firmware/drivers/lcd-recorder.c b/firmware/drivers/lcd-recorder.c
index 9f19bb89f0..9f86d8f1c4 100644
--- a/firmware/drivers/lcd-recorder.c
+++ b/firmware/drivers/lcd-recorder.c
@@ -96,8 +96,9 @@ static unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8];
#endif
/* All zeros and ones bitmaps for area filling */
-static unsigned char zeros[8] = { 0 };
-static unsigned char ones[8] = { 0xff };
+static unsigned char zeros[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
+static unsigned char ones[8] = { 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff};
#ifdef SIMULATOR