From 7adf2d9528115aa80592baef687f34cb1e910597 Mon Sep 17 00:00:00 2001 From: Sara Date: Tue, 28 Oct 2025 11:59:37 +0100 Subject: [PATCH] fix: uidata starts with 0 utilized bytes ipv 9 --- vendor/renderer/ui_data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/renderer/ui_data.c b/vendor/renderer/ui_data.c index 2172d96..9a78fc3 100644 --- a/vendor/renderer/ui_data.c +++ b/vendor/renderer/ui_data.c @@ -4,7 +4,7 @@ const size_t uiDataLength = UI_DATA_SIZE; -static size_t utilized = 9; +static size_t utilized = 0; static char uiDataArena[UI_DATA_SIZE]; static char *uiDataWriter = uiDataArena;