Fix length miscomputing
This commit is contained in:
parent
f10331edf2
commit
4f501d31ae
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue