fix small glitches; hamronizations

This commit is contained in:
marschap
2007-02-23 15:05:27 +00:00
parent c1028e1233
commit 8ba4302a9b
+2 -2
View File
@@ -390,10 +390,10 @@ CFontz_flush(Driver *drvthis)
} }
} }
else { else {
// Custom characters start at 0xF0, not at 0. // Custom characters start at 0x80, not at 0.
for (i = 0; i < p->width * p->height; i++) { for (i = 0; i < p->width * p->height; i++) {
if (p->framebuf[i] < 32) if (p->framebuf[i] < 32)
p->framebuf[i] += 128; p->framebuf[i] += 0x80;
} }
for (i = 0; i < p->height; i++) { for (i = 0; i < p->height; i++) {