From fcfd5131ec47d3295b175c614e2363be6df46b70 Mon Sep 17 00:00:00 2001 From: PreacherDHM Date: Mon, 21 Jul 2025 16:37:28 -0700 Subject: [PATCH] working on adding utf8 --- includes/tart.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/includes/tart.h b/includes/tart.h index eb629c9..847e57f 100644 --- a/includes/tart.h +++ b/includes/tart.h @@ -101,6 +101,14 @@ struct tart_cell { char display; }; #else +#ifdef TART_UTF8 +struct tart_cell { + tart_byte foreground; + tart_byte background; + tart_byte style; + char[2] display; +}; +#endif struct tart_cell { tart_byte foreground; tart_byte background;