From 0cd078935972700888b00fedfae20f31e1e0ea97 Mon Sep 17 00:00:00 2001 From: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com> Date: Fri, 27 Dec 2024 19:26:13 -0800 Subject: [PATCH] - Don't use an array buffer for patching, seems to help with memory use --- Patcher/PatcherUtils/PatchHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Patcher/PatcherUtils/PatchHelper.cs b/Patcher/PatcherUtils/PatchHelper.cs index e45ea9c..9502384 100644 --- a/Patcher/PatcherUtils/PatchHelper.cs +++ b/Patcher/PatcherUtils/PatchHelper.cs @@ -120,7 +120,7 @@ namespace PatcherUtils HDiffPatch.LogVerbosity = Verbosity.Quiet; patcher.Initialize(DeltaFilePath); - patcher.Patch(SourceFilePath, decodedPath, true, default, false, true); + patcher.Patch(SourceFilePath, decodedPath, false, default, false, false); } catch (Exception ex) {