From e4ae41e3a29fc3e4714e1c3f8c9f071768d17b68 Mon Sep 17 00:00:00 2001 From: isanae <14251494+isanae@users.noreply.github.com> Date: Sun, 10 Jan 2021 22:28:38 -0500 Subject: fixed all commands being legacy split running command into pre and post organizer --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 362caaad..f85e13f3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -23,7 +23,7 @@ int main(int argc, char *argv[]) setExceptionHandlers(); cl::CommandLine cl; - if (auto r=cl.run(GetCommandLineW())) { + if (auto r=cl.process(GetCommandLineW())) { return *r; } @@ -73,7 +73,7 @@ int main(int argc, char *argv[]) } } - if (auto r=cl.setupCore(app.core())) { + if (auto r=cl.run(app.core())) { return *r; } -- cgit v1.3.1