From e54f04d89f7c557efc9388ddfcc3cf5cabd8a9d7 Mon Sep 17 00:00:00 2001 From: "waffle.lord" Date: Sun, 15 May 2022 18:59:26 -0400 Subject: [PATCH] update exit codes --- Patcher/PatchGenerator/Resources/PatchClient.exe | 2 +- Patcher/PatcherUtils/Model/PatcherExitCode.cs | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Patcher/PatchGenerator/Resources/PatchClient.exe b/Patcher/PatchGenerator/Resources/PatchClient.exe index 13f6342..2b960e4 100644 --- a/Patcher/PatchGenerator/Resources/PatchClient.exe +++ b/Patcher/PatchGenerator/Resources/PatchClient.exe @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5fa52398d452db058d4f56aed63f71c3ea2de42ff5c3a83aea21aef0b1ac29ac +oid sha256:e754b83ebcaf250f2570e06ac06cf67f081a920ef3ed687a79bc7595987ff5ff size 25319596 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 } }