diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-01-24 22:23:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-24 22:23:20 +0000 |
commit | a23232aad6bccc3dc0e5ecd38365303863222a73 (patch) | |
tree | 4e503b36a4e8c20747c820a7bd039016e7de54bf /NorthstarDedicatedTest/hooks.cpp | |
parent | f31c452286cf8861f328b94b6b51c004a46984e0 (diff) | |
parent | b85b357a496ab633bb42f46735c42ef0abade392 (diff) | |
download | NorthstarLauncher-a23232aad6bccc3dc0e5ecd38365303863222a73.tar.gz NorthstarLauncher-a23232aad6bccc3dc0e5ecd38365303863222a73.zip |
Merge pull request #56 from p0358/main
Misc improvements
Diffstat (limited to 'NorthstarDedicatedTest/hooks.cpp')
-rw-r--r-- | NorthstarDedicatedTest/hooks.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/hooks.cpp b/NorthstarDedicatedTest/hooks.cpp index ce4d75ad..cdb5fef9 100644 --- a/NorthstarDedicatedTest/hooks.cpp +++ b/NorthstarDedicatedTest/hooks.cpp @@ -73,6 +73,10 @@ LPSTR GetCommandLineAHook() argBuffer << cmdlineArgFile.rdbuf(); cmdlineArgFile.close(); + // if some other command line option includes "-northstar" in the future then you have to refactor this check to check with both either space after or ending with + if (!isDedi && argBuffer.str().find("-northstar") != std::string::npos) + MessageBoxA(NULL, "The \"-northstar\" command line option is NOT supposed to go into ns_startup_args.txt file!\n\nThis option is supposed to go into Origin/Steam game launch options, and then you are supposed to launch the original Titanfall2.exe rather than NorthstarLauncher.exe to make use of it.", "Northstar Warning", MB_ICONWARNING); + args.append(argBuffer.str()); } |