WARNING: Fix breaking issue (introduced some days ago)

This commit is contained in:
Ray 2024-04-23 22:55:51 +02:00
parent f15455552d
commit 2e77443209

View File

@ -1964,7 +1964,7 @@ const char *GetFileName(const char *filePath)
if (filePath != NULL) fileName = strprbrk(filePath, "\\/");
if (fileName != NULL) return filePath;
if (fileName == NULL) return filePath;
return fileName + 1;
}