Open ignore file in text mode

This commit is contained in:
Kawe Mazidjatari 2022-11-24 11:48:23 +01:00
parent a7c33d4df3
commit b8b79385e1

View File

@ -236,7 +236,7 @@ KeyValues* CPackedStore::GetManifest(const string& svWorkspace, const string& sv
vector<string> CPackedStore::GetIgnoreList(const string& svWorkspace) const
{
string svIgnore = svWorkspace + ".vpkignore";
FileHandle_t hIgnoreFile = FileSystem()->Open(svIgnore.c_str(), "rb", "GAME");
FileHandle_t hIgnoreFile = FileSystem()->Open(svIgnore.c_str(), "rt", "GAME");
if (!hIgnoreFile)
{