mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-12 23:54:17 +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.
|
stringpool->shared = true; // will be used by all owned resource files.
|
||||||
|
|
||||||
// first, check for duplicates
|
// first, check for duplicates
|
||||||
if (allowduplicates)
|
if (!allowduplicates)
|
||||||
{
|
{
|
||||||
for (size_t i=0;i<filenames.size(); i++)
|
for (size_t i=0;i<filenames.size(); i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue