mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix logterminal TERMMODE_UNICODE checking.
This commit is contained in:
parent
6725972e11
commit
40c2fd12dc
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ void LogTerminal::QueueUnicode(uint32_t unicode)
|
|||
int abskbkey = (kbkey < 0) ? -kbkey : kbkey;
|
||||
bool wasenter = kbkey == KBKEY_ENTER || unicode == '\n';
|
||||
bool kbkeymode = termmode & TERMMODE_KBKEY;
|
||||
bool unicodemode = termmode && TERMMODE_UNICODE;
|
||||
bool unicodemode = termmode & TERMMODE_UNICODE;
|
||||
bool linemode = termmode & TERMMODE_LINEBUFFER;
|
||||
bool echomode = termmode & TERMMODE_ECHO;
|
||||
|
||||
|
|
Loading…
Reference in a new issue