loader.efi: UEFI text mode background colors are only using 3 bits
Need to mask background colors to pass allowed value.
This commit is contained in:
parent
f18ca7f311
commit
21388f5cf8
@ -159,7 +159,7 @@ efi_text_printchar(const teken_pos_t *p)
|
||||
}
|
||||
|
||||
attr = EFI_TEXT_ATTR(teken_color_to_efi_color[fg],
|
||||
teken_color_to_efi_color[bg]);
|
||||
teken_color_to_efi_color[bg] & 0x7);
|
||||
|
||||
conout->SetCursorPosition(conout, p->tp_col, p->tp_row);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user