mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
Merge branch 'origin/maint'
This commit is contained in:
commit
db4a23e3c4
1 changed files with 9 additions and 0 deletions
|
@ -1861,6 +1861,15 @@ static FString ParseGameInfo(TArray<FString> &pwads, const char *fn, const char
|
||||||
sc.MustGetString();
|
sc.MustGetString();
|
||||||
DoomStartupInfo.Song = sc.String;
|
DoomStartupInfo.Song = sc.String;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Silently ignore unknown properties
|
||||||
|
do
|
||||||
|
{
|
||||||
|
sc.MustGetAnyToken();
|
||||||
|
}
|
||||||
|
while(sc.CheckToken(','));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return iwad;
|
return iwad;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue