0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-13 01:30: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
{
Success = 0,
EftExeNotFound = 10,
NoPatchFolder = 11,
MissingFile = 12,
MissingDir = 13
ProgramClosed = 0,
Success = 10,
EftExeNotFound = 11,
NoPatchFolder = 12,
MissingFile = 13,
MissingDir = 14
}
}