This website works better with JavaScript.
Home
Help
Sign In
cacalabs
/
libcaca
mirror of
https://github.com/cacalabs/libcaca.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
7
Wiki
Activity
Browse Source
* Fixed bold support in ANSI loader.
tags/v0.99.beta14
Sam Hocevar
sam
18 years ago
parent
0a5bc9b61d
commit
bdfd1a250d
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
cucul/import.c
+ 4
- 0
cucul/import.c
View File
@@ -399,6 +399,10 @@ void _manage_modifiers(char c, int *fg, int *bg, int *save_fg, int *save_bg)
*bg = CUCUL_COLOR_DEFAULT;
break;
case 1: // BOLD
if(*fg < 8)
*fg += 8;
if(*bg < 8)
*bg += 8;
break;
case 4: // Underline
break;
Write
Preview
Loading…
Cancel
Save