Graphics/FrameGraph: Fix bug introduced in 97f1c2c56c
This commit is contained in:
parent
dcc23ef7c2
commit
a578b061b4
|
|
@ -1100,7 +1100,7 @@ namespace Nz
|
|||
void FrameGraph::RemoveDuplicatePasses()
|
||||
{
|
||||
// A way to remove duplicates from a std::vector without sorting it
|
||||
Bitset<> seen(m_framePasses.size());
|
||||
Bitset<> seen(m_framePasses.size(), false);
|
||||
|
||||
auto itRead = m_pending.passList.begin();
|
||||
auto itWrite = m_pending.passList.begin();
|
||||
|
|
|
|||
Loading…
Reference in New Issue