mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 06:42:12 +00:00
- fix DiscordAppId and SteamAppId from GameInfo
This commit is contained in:
parent
e212fa1310
commit
3723b79b3b
1 changed files with 2 additions and 2 deletions
|
@ -1888,12 +1888,12 @@ static FString ParseGameInfo(TArray<FString> &pwads, const char *fn, const char
|
|||
else if (!nextKey.CompareNoCase("DISCORDAPPID"))
|
||||
{
|
||||
sc.MustGetString();
|
||||
GameStartupInfo.DiscordAppId = !!sc.String;
|
||||
GameStartupInfo.DiscordAppId = sc.String;
|
||||
}
|
||||
else if (!nextKey.CompareNoCase("STEAMAPPID"))
|
||||
{
|
||||
sc.MustGetString();
|
||||
GameStartupInfo.SteamAppId = !!sc.String;
|
||||
GameStartupInfo.SteamAppId = sc.String;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue