Skip to content

Commit

Permalink
- fix erroneous check in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
madame-rachelle committed Feb 25, 2025
1 parent e5cf79f commit 52a5452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/d_iwad.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 52a5452

Please sign in to comment.