diff options
| author | Ray <[email protected]> | 2023-04-29 20:39:36 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-04-29 20:39:36 +0200 |
| commit | 59596e4266aa19692dcf29e3e0c4b3e7ffd50598 (patch) | |
| tree | 5a779d157e31a9c5f01285be310e571ff62bb12b /src | |
| parent | 66f0de280705f10959a4ef0c82f3b34d7350ea15 (diff) | |
| download | raylib-59596e4266aa19692dcf29e3e0c4b3e7ffd50598.tar.gz raylib-59596e4266aa19692dcf29e3e0c4b3e7ffd50598.zip | |
Update rcore.c
Diffstat (limited to 'src')
| -rw-r--r-- | src/rcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rcore.c b/src/rcore.c index bb885282..500e9edd 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -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++) { |
