mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-24 08:09:18 -05:00
Update rcore.c
This commit is contained in:
@ -3000,7 +3000,7 @@ bool IsFileExtension(const char *fileName, const char *ext)
|
|||||||
const char **checkExts = TextSplit(ext, ';', &extCount); // WARNING: Module required: rtext
|
const char **checkExts = TextSplit(ext, ';', &extCount); // WARNING: Module required: rtext
|
||||||
|
|
||||||
char fileExtLower[MAX_FILE_EXTENSION_SIZE + 1] = { 0 };
|
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++)
|
for (int i = 0; i < extCount; i++)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user