summaryrefslogtreecommitdiffhomepage
path: root/src/config.h
diff options
context:
space:
mode:
authorRay <[email protected]>2021-06-23 09:58:49 +0200
committerRay <[email protected]>2021-06-23 09:58:49 +0200
commit3db26f82eae53677c2e4ee6a4a5901fa8eb5f190 (patch)
treeb8a6a638aacb916d26f17979612bfbf9f70d1a12 /src/config.h
parent716e26aa37e352f0188824bc2de7dd3035f7413c (diff)
downloadraylib-3db26f82eae53677c2e4ee6a4a5901fa8eb5f190.tar.gz
raylib-3db26f82eae53677c2e4ee6a4a5901fa8eb5f190.zip
WARNING: BREAKING: Functions renamed!
RENAMED: GetCodepoints() -> LoadCodepoints(), now codepoint array data is loaded dynamically instead of reusing a limited static buffer. ADDED: UnloadCodepoints() to safely free loaded codepoints RENAMED: GetNextCodepoint() -> GetCodepoint()
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index 3ca16032..6479d409 100644
--- a/src/config.h
+++ b/src/config.h
@@ -165,7 +165,6 @@
//------------------------------------------------------------------------------------
#define MAX_TEXT_BUFFER_LENGTH 1024 // Size of internal static buffers used on some functions:
// TextFormat(), TextSubtext(), TextToUpper(), TextToLower(), TextToPascal(), TextSplit()
-#define MAX_TEXT_UNICODE_CHARS 512 // Maximum number of unicode codepoints: GetCodepoints()
#define MAX_TEXTSPLIT_COUNT 128 // Maximum number of substrings to split: TextSplit()