From 52a54521ed43d2495cab3e194e7f8d55bca799b1 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Tue, 25 Feb 2025 12:59:23 -0500 Subject: [PATCH] - fix erroneous check in previous commit --- src/d_iwad.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_iwad.cpp b/src/d_iwad.cpp index 195e39aa548..589b2fbb45c 100644 --- a/src/d_iwad.cpp +++ b/src/d_iwad.cpp @@ -846,7 +846,7 @@ int FIWadManager::IdentifyVersion (std::vector&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);