From 64096658e54dc4c05c3d3e8788b1da86cbbf020d Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Thu, 11 Jan 2024 08:02:14 -0500 Subject: [PATCH] - reverse allowduplicates check since it is a misnomer to what it actually did --- src/common/filesystem/source/filesystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/filesystem/source/filesystem.cpp b/src/common/filesystem/source/filesystem.cpp index f011c4c57..a8418956f 100644 --- a/src/common/filesystem/source/filesystem.cpp +++ b/src/common/filesystem/source/filesystem.cpp @@ -252,7 +252,7 @@ bool FileSystem::InitMultipleFiles (std::vector& filenames, LumpFil stringpool->shared = true; // will be used by all owned resource files. // first, check for duplicates - if (allowduplicates) + if (!allowduplicates) { for (size_t i=0;i