diff options
| author | dam <devnull@localhost> | 2024-01-11 01:29:44 +0000 |
|---|---|---|
| committer | dam <devnull@localhost> | 2024-01-11 01:29:44 +0000 |
| commit | 0e9f04df9c1804b73baecdf4c3ad14fff977e2f1 (patch) | |
| tree | 51ee6b35e407982d8eaffd28b8ae2794222f0cf4 /ttt.jai | |
| parent | e5d8eaa14407608a15a639da14bbea99dd8ef61a (diff) | |
| download | task-time-tracker-0e9f04df9c1804b73baecdf4c3ad14fff977e2f1.tar.zst task-time-tracker-0e9f04df9c1804b73baecdf4c3ad14fff977e2f1.zip | |
Very small fixes.
Diffstat (limited to 'ttt.jai')
| -rw-r--r-- | ttt.jai | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1263,7 +1263,7 @@ main :: () { while(key != #char "q") { __mark := get_temporary_storage_mark(); key = TUI.get_key(1000); - if key >= 33 && key <= 128 then print_character(cast,force(u8)key); + if key >= 32 && key <= 128 then print_character(cast,force(u8)key); else write_string("-"); set_temporary_storage_mark(__mark); } |
