Update rcore.c

This commit is contained in:
Ray 2023-04-29 20:39:36 +02:00
parent 66f0de2807
commit 59596e4266
1 changed files with 1 additions and 1 deletions

View File

@ -3000,7 +3000,7 @@ bool IsFileExtension(const char *fileName, const char *ext)
const char **checkExts = TextSplit(ext, ';', &extCount); // WARNING: Module required: rtext
char fileExtLower[MAX_FILE_EXTENSION_SIZE + 1] = { 0 };
strncpy(fileExtLower, TextToLower(fileExt),MAX_FILE_EXTENSION_SIZE); // WARNING: Module required: rtext
strncpy(fileExtLower, TextToLower(fileExt), MAX_FILE_EXTENSION_SIZE); // WARNING: Module required: rtext
for (int i = 0; i < extCount; i++)
{