0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-13 08:10:47 -05:00

update exit codes

This commit is contained in:
IsWaffle 2022-05-15 18:59:26 -04:00
parent 0e3a82a670
commit e54f04d89f
2 changed files with 7 additions and 6 deletions

Binary file not shown.

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
} }
} }