Fix launcher command line for client.dll

Launcher command line did not pass "-noworkerdll" which is required if the game is launched as game client only.
This commit is contained in:
Kawe Mazidjatari 2022-10-20 14:20:02 +02:00
parent 3dc330e5df
commit 4bc0aaf1e6
3 changed files with 20 additions and 2 deletions

View File

@ -0,0 +1,10 @@
-ansiclr
-dev
-devsdk
-fnf
-multiple
-novid
-showdevmenu
-wconsole
-windowed
-playlistfile "playlists_r5_patch.txt"

View File

@ -0,0 +1,8 @@
-ansiclr
-fnf
-multiple
-novid
-showdevmenu
-wconsole
-windowed
-playlistfile "playlists_r5_patch.txt"

View File

@ -390,7 +390,7 @@ bool CLauncher::Setup(eLaunchMode lMode, eLaunchState lState)
{
std::stringstream ss;
ss << cfgFile.rdbuf();
svCmdLineArgs = ss.str() + "-launcher";
svCmdLineArgs = ss.str() + "-launcher" + "-noworkerdll";
}
else
{
@ -413,7 +413,7 @@ bool CLauncher::Setup(eLaunchMode lMode, eLaunchState lState)
{
std::stringstream ss;
ss << cfgFile.rdbuf();
svCmdLineArgs = ss.str() + "-launcher";
svCmdLineArgs = ss.str() + "-launcher" + "-noworkerdll";
}
else
{