diff --git a/Source/CmdLine/AuCmdLinePlatform.cpp b/Source/CmdLine/AuCmdLinePlatform.cpp index 1f6b4e96..33792299 100644 --- a/Source/CmdLine/AuCmdLinePlatform.cpp +++ b/Source/CmdLine/AuCmdLinePlatform.cpp @@ -63,6 +63,14 @@ namespace Aurora::CmdLine args.push_back(last); } + if (args.size()) + { + if (AuStringContains(args[0], "ld-Aurora")) + { + args.erase(args.begin()); + } + } + return args; } #endif