From 35bb26705a0a9819f439d129dca79edc47276f68 Mon Sep 17 00:00:00 2001 From: veclavtalica Date: Fri, 7 Mar 2025 05:16:46 +0300 Subject: [PATCH] twn_text: use full ascii range --- src/rendering/twn_text.c | 4 ---- src/rendering/twn_text_c.h | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/rendering/twn_text.c b/src/rendering/twn_text.c index dcd2456..37799b4 100644 --- a/src/rendering/twn_text.c +++ b/src/rendering/twn_text.c @@ -7,10 +7,6 @@ #include #include -#define ASCII_START 32 -#define ASCII_END 128 -#define NUM_DISPLAY_ASCII ((ASCII_END - ASCII_START) + 1) - /* should be large enough that there's virtually never more than one block */ #define STRING_ARENA_BLOCK_SIZE 512000 diff --git a/src/rendering/twn_text_c.h b/src/rendering/twn_text_c.h index 6b3b9c9..6b5b109 100644 --- a/src/rendering/twn_text_c.h +++ b/src/rendering/twn_text_c.h @@ -8,7 +8,7 @@ #include -#define ASCII_START 32 +#define ASCII_START 1 #define ASCII_END 128 #define NUM_DISPLAY_ASCII ((ASCII_END - ASCII_START) + 1)