update exit codes

This commit is contained in:
IsWaffle 2022-05-15 18:59:26 -04:00
parent 80f1712475
commit 37f3be1a7b
2 changed files with 6 additions and 5 deletions

View File

@ -2,10 +2,11 @@
{ {
public enum PatcherExitCode public enum PatcherExitCode
{ {
Success = 0, ProgramClosed = 0,
EftExeNotFound = 10, Success = 10,
NoPatchFolder = 11, EftExeNotFound = 11,
MissingFile = 12, NoPatchFolder = 12,
MissingDir = 13 MissingFile = 13,
MissingDir = 14
} }
} }