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 syntax errors.
tags/v0.99.beta14
Sam Hocevar
sam
18 years ago
parent
8acd004674
commit
0dcf397cf4
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
caca/driver_ncurses.c
+1
-1
caca/driver_slang.c
+ 1
- 1
caca/driver_ncurses.c
View File
@@ -450,7 +450,7 @@ static void ncurses_write_utf32(uint32_t ch)
addstr(buf);
#else
if(ch < 0x80)
addch(ch)
addch(ch)
;
else if(cucul_utf32_is_fullwidth(ch))
addstr("? ");
else
+ 1
- 1
caca/driver_slang.c
View File
@@ -462,7 +462,7 @@ static void slang_write_utf32(uint32_t ch)
SLsmg_write_string(buf);
#else
if(ch < 0x80)
SLsmg_write_char(ch)
SLsmg_write_char(ch)
;
else if(cucul_utf32_is_fullwidth(ch))
SLsmg_write_string("? ");
else
Write
Preview
Loading…
Cancel
Save