From 37443f23656fbf73bd3148e39a02447fa79cc499 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Tue, 4 Feb 2020 12:12:53 -0500 Subject: [PATCH] - fix compile on 32-bit --- source/common/searchpaths.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/searchpaths.cpp b/source/common/searchpaths.cpp index 818643b52..839deabe5 100644 --- a/source/common/searchpaths.cpp +++ b/source/common/searchpaths.cpp @@ -264,7 +264,7 @@ TArray 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); } }