Fix ascii fallback
This commit is contained in:
parent
3c31d9c082
commit
c0420b76b0
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ ascii_glyph_lookup (grub_uint32_t code)
|
||||||
ascii_font_glyph[current]->font = NULL;
|
ascii_font_glyph[current]->font = NULL;
|
||||||
|
|
||||||
grub_memcpy (ascii_font_glyph[current]->bitmap,
|
grub_memcpy (ascii_font_glyph[current]->bitmap,
|
||||||
&ascii_bitmaps[(0x7f - current) * ASCII_BITMAP_SIZE],
|
&ascii_bitmaps[current * ASCII_BITMAP_SIZE],
|
||||||
ASCII_BITMAP_SIZE);
|
ASCII_BITMAP_SIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue