- fix erroneous check in previous commit

This commit is contained in:
Rachael Alexanderson 2025-02-25 12:59:23 -05:00
parent e5cf79fecb
commit 52a54521ed
No known key found for this signature in database
GPG key ID: 26A8ACCE97115EE0

View file

@ -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);