mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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:
parent
3dc330e5df
commit
4bc0aaf1e6
10
r5dev/resource/cfg/startup_client_dev.cfg
Normal file
10
r5dev/resource/cfg/startup_client_dev.cfg
Normal file
@ -0,0 +1,10 @@
|
||||
-ansiclr
|
||||
-dev
|
||||
-devsdk
|
||||
-fnf
|
||||
-multiple
|
||||
-novid
|
||||
-showdevmenu
|
||||
-wconsole
|
||||
-windowed
|
||||
-playlistfile "playlists_r5_patch.txt"
|
8
r5dev/resource/cfg/startup_client_retail.cfg
Normal file
8
r5dev/resource/cfg/startup_client_retail.cfg
Normal file
@ -0,0 +1,8 @@
|
||||
-ansiclr
|
||||
-fnf
|
||||
-multiple
|
||||
-novid
|
||||
-showdevmenu
|
||||
-wconsole
|
||||
-windowed
|
||||
-playlistfile "playlists_r5_patch.txt"
|
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user