This commit is contained in:
Ray
2024-06-09 13:16:29 +02:00
parent 6b3c1148bf
commit 8cbde7f84c
2 changed files with 6 additions and 15 deletions

View File

@@ -2251,7 +2251,7 @@ bool IsFileNameValid(const char *fileName)
if ((fileName != NULL) && (fileName[0] != '\0'))
{
int length = strlen(fileName);
int length = (int)strlen(fileName);
bool allPeriods = true;
for (int i = 0; i < length; i++)