From b8b79385e136a3d4055af0653eada8c4e0d06d07 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 24 Nov 2022 11:48:23 +0100 Subject: [PATCH] Open ignore file in text mode --- r5dev/vpklib/packedstore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/vpklib/packedstore.cpp b/r5dev/vpklib/packedstore.cpp index f843660b..9fec5c92 100644 --- a/r5dev/vpklib/packedstore.cpp +++ b/r5dev/vpklib/packedstore.cpp @@ -236,7 +236,7 @@ KeyValues* CPackedStore::GetManifest(const string& svWorkspace, const string& sv vector 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) {