From 04dff26067e84106a2939a230590b9825a8df909 Mon Sep 17 00:00:00 2001 From: Alessandro Mauri Date: Thu, 21 Nov 2024 00:45:50 +0100 Subject: [PATCH] reduced maximum elements to 1024 --- src/ugui_data.c3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ugui_data.c3 b/src/ugui_data.c3 index 7fd9c90..3e043c5 100644 --- a/src/ugui_data.c3 +++ b/src/ugui_data.c3 @@ -93,7 +93,7 @@ struct Elem { def IdTree = vtree::VTree() @private; // elements themselves are kept in a cache -const uint MAX_ELEMENTS = 2048; +const uint MAX_ELEMENTS = 1024; def ElemCache = cache::Cache() @private; def CmdQueue = fifo::Fifo();