From 0e9f04df9c1804b73baecdf4c3ad14fff977e2f1 Mon Sep 17 00:00:00 2001 From: dam Date: Thu, 11 Jan 2024 01:29:44 +0000 Subject: Very small fixes. --- ttt.jai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ttt.jai') diff --git a/ttt.jai b/ttt.jai index 4540699..3e95802 100644 --- a/ttt.jai +++ b/ttt.jai @@ -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); } -- cgit v1.2.3