diff --git a/Patcher/PatchGenerator/Resources/PatchClient.exe b/Patcher/PatchGenerator/Resources/PatchClient.exe index 789fc12..31da102 100644 Binary files a/Patcher/PatchGenerator/Resources/PatchClient.exe and b/Patcher/PatchGenerator/Resources/PatchClient.exe differ diff --git a/Patcher/PatcherUtils/Model/PatcherExitCode.cs b/Patcher/PatcherUtils/Model/PatcherExitCode.cs index a33601b..ff962d6 100644 --- a/Patcher/PatcherUtils/Model/PatcherExitCode.cs +++ b/Patcher/PatcherUtils/Model/PatcherExitCode.cs @@ -2,10 +2,11 @@ { public enum PatcherExitCode { - Success = 0, - EftExeNotFound = 10, - NoPatchFolder = 11, - MissingFile = 12, - MissingDir = 13 + ProgramClosed = 0, + Success = 10, + EftExeNotFound = 11, + NoPatchFolder = 12, + MissingFile = 13, + MissingDir = 14 } }