- missed a warning.

This commit is contained in:
Christoph Oelckers 2020-01-12 08:26:07 +01:00
parent 9e13d3c60d
commit 1d0ece26b6

View file

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