This website works better with JavaScript.
首頁
說明
登入
cacalabs
/
libcaca
镜像来自
https://github.com/cacalabs/libcaca.git
關註
1
收藏
0
複製
0
程式碼
問題管理
0
版本發佈
7
Wiki
Activity
瀏覽代碼
* Fixed syntax errors.
tags/v0.99.beta14
Sam Hocevar
sam
19 年之前
父節點
8acd004674
當前提交
0dcf397cf4
共有
2 個文件被更改
,包括
2 次插入
和
2 次删除
分割檢視
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
查看文件
@@ -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
查看文件
@@ -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…
取消
儲存