From a8ac6e2ef957a3edc963a9d0147a016d7755a03c Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 4 Dec 2018 13:15:42 +0100 Subject: [PATCH] Increase text management buffers size --- src/text.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/text.c b/src/text.c index 07a259644..34ac16782 100644 --- a/src/text.c +++ b/src/text.c @@ -58,8 +58,8 @@ //---------------------------------------------------------------------------------- // Defines and Macros //---------------------------------------------------------------------------------- -#define MAX_FORMATTEXT_LENGTH 256 -#define MAX_SUBTEXT_LENGTH 256 +#define MAX_FORMATTEXT_LENGTH 512 +#define MAX_SUBTEXT_LENGTH 512 //---------------------------------------------------------------------------------- // Types and Structures Definition