mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 00:42:08 +00:00
- fix compile on 32-bit
This commit is contained in:
parent
14ef8e873e
commit
37443f2365
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ TArray<FileEntry> CollectAllFilesInSearchPath()
|
|||
FileReader fr;
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue