mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 13:00:54 +07:00
vt: fix \e[2m using the wrong placeholder color on graphical consoles
Only vgacon and sisusbcon did it right, the rest (via generic code) tried underline (usually cyan). Signed-off-by: Adam Borowski <kilobyte@angband.pl> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e0ac3f9825
commit
1c65a879cc
@ -425,7 +425,7 @@ static u8 build_attr(struct vc_data *vc, u8 _color, u8 _intensity, u8 _blink,
|
||||
else if (_underline)
|
||||
a = (a & 0xf0) | vc->vc_ulcolor;
|
||||
else if (_intensity == 0)
|
||||
a = (a & 0xf0) | vc->vc_ulcolor;
|
||||
a = (a & 0xf0) | vc->vc_halfcolor;
|
||||
if (_reverse)
|
||||
a = ((a) & 0x88) | ((((a) >> 4) | ((a) << 4)) & 0x77);
|
||||
if (_blink)
|
||||
|
Loading…
Reference in New Issue
Block a user