summaryrefslogtreecommitdiff
path: root/sys2ansi.pl
diff options
context:
space:
mode:
authorhpa <hpa>1999-03-05 15:08:54 +0000
committerhpa <hpa>1999-03-05 15:08:54 +0000
commit4c02522e6fa81e9cdcbc4b9fd127b638003baebf (patch)
treec99b430ecb30f1d6ed340eb33815e67bfd0d2223 /sys2ansi.pl
parent3aeb29356b1d04adbcb9f01be35923d17a46a6c7 (diff)
downloadsyslinux-4c02522e6fa81e9cdcbc4b9fd127b638003baebf.tar.gz
One more bug fix...
Diffstat (limited to 'sys2ansi.pl')
-rwxr-xr-xsys2ansi.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys2ansi.pl b/sys2ansi.pl
index 5a0c1ca9..bd7fd5ab 100755
--- a/sys2ansi.pl
+++ b/sys2ansi.pl
@@ -15,7 +15,7 @@ while ( read(STDIN, $ch, 1) > 0 ) {
$attr = hex $attr;
print "\x1b[0;";
if ( $attr & 0x80 ) {
- print "7;";
+ print "5;";
$attr &= ~0x80;
}
if ( $attr & 0x08 ) {