Commit 1c65a879 authored by Adam Borowski's avatar Adam Borowski Committed by Greg Kroah-Hartman

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: default avatarAdam Borowski <kilobyte@angband.pl>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e0ac3f98
...@@ -425,7 +425,7 @@ static u8 build_attr(struct vc_data *vc, u8 _color, u8 _intensity, u8 _blink, ...@@ -425,7 +425,7 @@ static u8 build_attr(struct vc_data *vc, u8 _color, u8 _intensity, u8 _blink,
else if (_underline) else if (_underline)
a = (a & 0xf0) | vc->vc_ulcolor; a = (a & 0xf0) | vc->vc_ulcolor;
else if (_intensity == 0) else if (_intensity == 0)
a = (a & 0xf0) | vc->vc_ulcolor; a = (a & 0xf0) | vc->vc_halfcolor;
if (_reverse) if (_reverse)
a = ((a) & 0x88) | ((((a) >> 4) | ((a) << 4)) & 0x77); a = ((a) & 0x88) | ((((a) >> 4) | ((a) << 4)) & 0x77);
if (_blink) if (_blink)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment