- fix compile on 32-bit

This commit is contained in:
Rachael Alexanderson 2020-02-04 12:12:53 -05:00 committed by Christoph Oelckers
parent 14ef8e873e
commit 37443f2365

View file

@ -264,7 +264,7 @@ TArray<FileEntry> CollectAllFilesInSearchPath()
FileReader fr; FileReader fr;
if (fr.OpenFile(userConfig.gamegrp)) if (fr.OpenFile(userConfig.gamegrp))
{ {
FileEntry fe = { userConfig.gamegrp, (uintmax_t)fr.GetLength(), 0, 0, index++ }; FileEntry fe = { userConfig.gamegrp, (size_t)fr.GetLength(), 0, 0, index++ };
filelist.Push(fe); filelist.Push(fe);
} }
} }