mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Fix --mode= handling on injector arguments (#829)
This commit is contained in:
parent
8b7f9b58bf
commit
bf1a525e4c
1 changed files with 1 additions and 1 deletions
|
|
@ -454,7 +454,7 @@ namespace Dalamud.Injector
|
|||
else if (args[i] == "-m")
|
||||
mode = args[++i];
|
||||
else if (args[i].StartsWith("--mode="))
|
||||
gamePath = args[i].Split('=', 2)[1];
|
||||
mode = args[i].Split('=', 2)[1];
|
||||
else if (args[i].StartsWith("--handle-owner="))
|
||||
handleOwner = IntPtr.Parse(args[i].Split('=', 2)[1]);
|
||||
else if (args[i] == "--")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue