0
0
Fork 0
mirror of https://github.com/ZDoom/gzdoom.git synced 2025-04-21 10:20:46 +00:00

- 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;
if (GetFileInfo(fn, &size, nullptr))
{
AddEntry(fn, size);
AddEntry(fn, (int)size);
count++;
}
}