From 64c8a0f3bd2f278d611377bb9be9dcde6e168cd5 Mon Sep 17 00:00:00 2001 From: Mikhail Ilyin Date: Sun, 22 Dec 2024 20:37:15 +0300 Subject: [PATCH] Added constant MAX_GLYPHS for autoscanning all possible glyphs Added constant MAX_GLYPHS for autoscanning all possible glyphs --- src/rtext.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rtext.c b/src/rtext.c index c1ca100bf..7d6c705a2 100644 --- a/src/rtext.c +++ b/src/rtext.c @@ -115,6 +115,7 @@ #ifndef MAX_TEXTSPLIT_COUNT #define MAX_TEXTSPLIT_COUNT 128 // Maximum number of substrings to split: TextSplit() #endif +#define MAX_GLYPHS 65536 // Maximum number of glyphs in a font that need to be scanned //---------------------------------------------------------------------------------- // Types and Structures Definition