mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-07 18:42:36 +00:00
- fix erroneous check in previous commit
This commit is contained in:
parent
e5cf79fecb
commit
52a54521ed
1 changed files with 1 additions and 1 deletions
|
@ -846,7 +846,7 @@ int FIWadManager::IdentifyVersion (std::vector<std::string>&wadfiles, const char
|
|||
{
|
||||
bool wantsnetgame = (Args->CheckParm("-join") || Args->CheckParm("-host"));
|
||||
|
||||
if ((wantsnetgame && i_loadsupportwad == 1) || (i_loadsupportwad == 2))
|
||||
if ((!wantsnetgame && i_loadsupportwad == 1) || (i_loadsupportwad == 2))
|
||||
{
|
||||
FString supportWAD = IWADPathFileSearch(info.SupportWAD);
|
||||
|
||||
|
|
Loading…
Reference in a new issue