twn_text: use full ascii range

This commit is contained in:
veclavtalica 2025-03-07 05:16:46 +03:00
parent 13bc71a28d
commit 35bb26705a
2 changed files with 1 additions and 5 deletions

View File

@ -7,10 +7,6 @@
#include <stb_truetype.h>
#include <stb_ds.h>
#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

View File

@ -8,7 +8,7 @@
#include <stb_truetype.h>
#define ASCII_START 32
#define ASCII_START 1
#define ASCII_END 128
#define NUM_DISPLAY_ASCII ((ASCII_END - ASCII_START) + 1)