diff --git a/src/rtext.c b/src/rtext.c index 30fe149c1..d5600ccdb 100644 --- a/src/rtext.c +++ b/src/rtext.c @@ -1415,7 +1415,7 @@ int TextCopy(char *dst, const char *src) return 0; // use strcpy since it uses vector operations - unsigned int length = strcpy(dst, src); + unsigned int length = *strcpy(dst, src); return length; }