0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-12 21:10:46 -05:00

- Don't use an array buffer for patching, seems to help with memory use

This commit is contained in:
DrakiaXYZ 2024-12-27 19:26:13 -08:00
parent 8ccb6e0b32
commit 0cd0789359

View File

@ -120,7 +120,7 @@ namespace PatcherUtils
HDiffPatch.LogVerbosity = Verbosity.Quiet; HDiffPatch.LogVerbosity = Verbosity.Quiet;
patcher.Initialize(DeltaFilePath); patcher.Initialize(DeltaFilePath);
patcher.Patch(SourceFilePath, decodedPath, true, default, false, true); patcher.Patch(SourceFilePath, decodedPath, false, default, false, false);
} }
catch (Exception ex) catch (Exception ex)
{ {