- Timestamp:
- Jun 27, 2007, 8:00:18 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca/driver_slang.c
r1774 r1776 455 455 char buf[10]; 456 456 int bytes; 457 #else 458 char ascii; 457 459 #endif 458 460 … … 465 467 SLsmg_write_string(buf); 466 468 #else 467 if(ch < 0x80) 468 SLsmg_write_char(ch); 469 else if(cucul_utf32_is_fullwidth(ch)) 470 SLsmg_write_string("? "); 471 else 472 SLsmg_write_char('?'); 469 ascii = cucul_utf32_to_ascii(ch); 470 SLsmg_write_char(ascii); 471 if(cucul_utf32_is_fullwidth(ch)) 472 SLsmg_write_char(ascii); 473 473 #endif 474 474 }
Note: See TracChangeset
for help on using the changeset viewer.