mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 06:42:08 +00:00
- reverse allowduplicates check since it is a misnomer to what it actually did
This commit is contained in:
parent
55d90a18dc
commit
64096658e5
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ bool FileSystem::InitMultipleFiles (std::vector<std::string>& 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<filenames.size(); i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue