summaryrefslogtreecommitdiffhomepage
path: root/src/text.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-01-19 11:23:38 +0100
committerraysan5 <[email protected]>2020-01-19 11:23:38 +0100
commitbec467705e83ecf66f4bf75ddbcad8ac4a9d8e95 (patch)
treee799506eebe2b9af8b44cb8b1bab1e14073c2394 /src/text.c
parentfe0d04c8796234d53b474e02dd4d8e198d32ef99 (diff)
downloadraylib-bec467705e83ecf66f4bf75ddbcad8ac4a9d8e95.tar.gz
raylib-bec467705e83ecf66f4bf75ddbcad8ac4a9d8e95.zip
Review custom allocators
Diffstat (limited to 'src/text.c')
-rw-r--r--src/text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text.c b/src/text.c
index 5ff83849..7fe70b86 100644
--- a/src/text.c
+++ b/src/text.c
@@ -1431,7 +1431,7 @@ char *TextToUtf8(int *codepoints, int length)
}
// Resize memory to text length + string NULL terminator
- text = realloc(text, size + 1);
+ text = RL_REALLOC(text, size + 1);
return text;
}