Fix length miscomputing

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-03-16 00:55:11 +01:00
parent f10331edf2
commit 4f501d31ae

View file

@ -343,7 +343,7 @@ grub_serial_putchar (const struct grub_unicode_glyph *c)
break;
default:
if ((c->base & 0xC0) == 0xC0)
if ((c->base & 0xC0) == 0x80)
break;
if (xpos >= TEXT_WIDTH)
{