- missed a warning.

This commit is contained in:
Christoph Oelckers 2020-01-12 08:26:07 +01:00
parent 9e13d3c60d
commit 1d0ece26b6
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ int FDirectory::AddDirectory(const char *dirpath)
FString fn = FString(dirpath) + fi;
if (GetFileInfo(fn, &size, nullptr))
{
AddEntry(fn, size);
AddEntry(fn, (int)size);
count++;
}
}