From 5229cd6efe6097bde61bed160248d0b7c1a83747 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Mon, 23 Oct 2023 19:30:12 -0600 Subject: [PATCH] decompile: build fix --- common/decompile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/decompile.cc b/common/decompile.cc index e949ebd5..dbbb1d23 100644 --- a/common/decompile.cc +++ b/common/decompile.cc @@ -959,7 +959,7 @@ static std::vector DecompileLeafTaskLeafVisualization( compiled_brush_t brush; brush.source = task.brush; brush.brush_offset = brush_offset; - brush.contents = task.leaf ? contentflags_t(task.leaf->contents) : contentflags_t(task.contents.value()); + brush.contents = task.leaf ? contentflags_t{task.leaf->contents} : contentflags_t{task.contents.value()}; for (auto &finalSide : finalBrush.sides) { compiled_brush_side_t &side = brush.sides.emplace_back();