From a578b061b4b203a6ae7eea309ca96477b038c760 Mon Sep 17 00:00:00 2001 From: SirLynix Date: Mon, 1 May 2023 17:05:07 +0200 Subject: [PATCH] Graphics/FrameGraph: Fix bug introduced in 97f1c2c56c6b62ee74a6c18efd1dccde865c18fd --- src/Nazara/Graphics/FrameGraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Nazara/Graphics/FrameGraph.cpp b/src/Nazara/Graphics/FrameGraph.cpp index 440ca21e6..fcbe7e505 100644 --- a/src/Nazara/Graphics/FrameGraph.cpp +++ b/src/Nazara/Graphics/FrameGraph.cpp @@ -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();