diff options
| author | Ray <[email protected]> | 2021-06-23 09:58:49 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-06-23 09:58:49 +0200 |
| commit | 3db26f82eae53677c2e4ee6a4a5901fa8eb5f190 (patch) | |
| tree | b8a6a638aacb916d26f17979612bfbf9f70d1a12 /src/config.h | |
| parent | 716e26aa37e352f0188824bc2de7dd3035f7413c (diff) | |
| download | raylib-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.h | 1 |
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() |
