diff options
author | hpa <hpa> | 1999-03-05 15:08:54 +0000 |
---|---|---|
committer | hpa <hpa> | 1999-03-05 15:08:54 +0000 |
commit | 4c02522e6fa81e9cdcbc4b9fd127b638003baebf (patch) | |
tree | c99b430ecb30f1d6ed340eb33815e67bfd0d2223 | |
parent | 3aeb29356b1d04adbcb9f01be35923d17a46a6c7 (diff) | |
download | syslinux-4c02522e6fa81e9cdcbc4b9fd127b638003baebf.tar.gz |
One more bug fix...
-rwxr-xr-x | sys2ansi.pl | 2 |
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 ) { |