From 6f0a34bfb761d965bd961dc1f880b84e35f9959f Mon Sep 17 00:00:00 2001 From: jbzdarkid Date: Wed, 20 Nov 2019 10:05:59 -0800 Subject: Understanding symmetry, but nothing else. --- Source/Randomizer2Core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Randomizer2Core.cpp') diff --git a/Source/Randomizer2Core.cpp b/Source/Randomizer2Core.cpp index c34fec6..f8d1312 100644 --- a/Source/Randomizer2Core.cpp +++ b/Source/Randomizer2Core.cpp @@ -24,7 +24,7 @@ std::vector Randomizer2Core::CutEdges(const Puzzle& p, size_t numEdges, boo bool inSequence = false; for (Pos pos : p.sequence) inSequence |= (pos.x == x && pos.y == y); if (inSequence) continue; - edges.emplace_back(Pos{x, y}); + edges.emplace_back(x, y); } } return CutEdgesInternal(p, edges, numEdges); -- cgit 1.4.1