Changes in uspace/lib/gui/terminal.c [28a5ebd:6feccae] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gui/terminal.c
r28a5ebd r6feccae 42 42 #include <io/concaps.h> 43 43 #include <io/console.h> 44 #include <loc.h> 44 45 #include <task.h> 45 46 #include <adt/list.h> … … 419 420 if (event->type == CEV_KEY && event->ev.key.type == KEY_PRESS && 420 421 event->ev.key.c != 0) { 421 char32_t tmp[2] = {422 wchar_t tmp[2] = { 422 423 event->ev.key.c, 423 424 0 … … 436 437 } 437 438 438 static void term_write_char(terminal_t *term, char32_t ch)439 static void term_write_char(terminal_t *term, wchar_t ch) 439 440 { 440 441 sysarg_t updated = 0; … … 455 456 break; 456 457 default: 457 updated = chargrid_put uchar(term->frontbuf, ch, true);458 updated = chargrid_putwchar(term->frontbuf, ch, true); 458 459 } 459 460
Note:
See TracChangeset
for help on using the changeset viewer.