From 3a6d36747ae6afa637033dfa92003ceee2435f84 Mon Sep 17 00:00:00 2001 From: Iss Mneur Date: Mon, 10 Oct 2016 18:09:37 -0600 Subject: [PATCH] True means we should ignore --- code/datastructures/FSOExecutable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datastructures/FSOExecutable.cpp b/code/datastructures/FSOExecutable.cpp index f4197ed..41109b7 100644 --- a/code/datastructures/FSOExecutable.cpp +++ b/code/datastructures/FSOExecutable.cpp @@ -168,7 +168,7 @@ wxArrayString FSOExecutable::GetBinariesFromRootFolder( continue; } #if IS_LINUX - if (!IsFileToIgnore(filename)) { + if (IsFileToIgnore(filename)) { continue; } #endif