Browse Source

Thanks to c00kiemon5ter. Not changing bold to bright colors seems to be the

right choice.
Christoph Lohmann 12 years ago
parent
commit
0d88f1ef75
1 changed files with 1 additions and 3 deletions
  1. 1 3
      st.c

+ 1 - 3
st.c

@@ -2182,10 +2182,8 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
 	if(base.mode & ATTR_REVERSE)
 		temp = fg, fg = bg, bg = temp;
 
-	if(base.mode & ATTR_BOLD) {
-		fg += 8;
+	if(base.mode & ATTR_BOLD)
 		font = &dc.bfont;
-	}
 
 	if(base.mode & ATTR_ITALIC)
 		font = &dc.ifont;