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
{
Success = 0,
EftExeNotFound = 10,
NoPatchFolder = 11,
MissingFile = 12,
MissingDir = 13
ProgramClosed = 0,
Success = 10,
EftExeNotFound = 11,
NoPatchFolder = 12,
MissingFile = 13,
MissingDir = 14
}
}