diff options
Diffstat (limited to 'TUI/unix.jai')
| -rw-r--r-- | TUI/unix.jai | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TUI/unix.jai b/TUI/unix.jai index 439447d..e5c81c3 100644 --- a/TUI/unix.jai +++ b/TUI/unix.jai @@ -33,7 +33,7 @@ OS_prepare_terminal :: () { term_new.c_oflag &= 0xFFFFFFFE;// ~OPOST; term_new.c_lflag &= 0xFFFF7FB4;// ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN); term_new.c_cflag &= 0xFFFFFECF;// ~(CSIZE | PARENB); - term_new.c_cflag |= 0x00000030; + term_new.c_cflag |= 0x00000030; // TODO WHAT IS THIS? tcsetattr(STDIN_FILENO, 0, *term_new); } |
