Skip to content
Snippets Groups Projects
Commit 157ae0c5 authored by deuce's avatar deuce
Browse files

That's got it... the mask for bright is 0x08, not 0x04!

parent b8389381
No related branches found
No related tags found
No related merge requests found
......@@ -314,13 +314,13 @@ void ansi_textattr(int attr)
bl=attr&0x80;
bg=(attr>>4)&0x7;
fg=attr&0x07;
br=attr&0x04;
br=attr&0x08;
oa=ansi_curr_attr>>8;
obl=oa&0x80;
obg=(oa>>4)&0x7;
ofg=oa&0x07;
obr=oa&0x04;
obr=oa&0x08;
ansi_curr_attr=attr<<8;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment