Fix missing deref in launcher.cpp

Pointer should be dereferenced.
This commit is contained in:
Kawe Mazidjatari 2023-05-13 19:39:53 +02:00
parent 934819574b
commit 81182f078b

View File

@ -75,7 +75,7 @@ void RemoveSpuriousGameParameters()
// as all there are required to run the game with the game sdk.
void AppendSDKParametersPreInit()
{
if (s_bIsDedicated)
if (*s_bIsDedicated)
{
CommandLine()->AppendParm("-collate", "");
CommandLine()->AppendParm("-multiple", "");