From aab88385ce1e7159765b28a09bc69190dde87d7f Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Wed, 5 Jun 2024 18:38:00 +0200 Subject: [PATCH] fix mrege to unique: a5f291fa12 Signed-off-by: Berthold Stoeger --- core/dive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dive.cpp b/core/dive.cpp index 82f32cdf4..9f60701b0 100644 --- a/core/dive.cpp +++ b/core/dive.cpp @@ -2265,7 +2265,7 @@ merge_result merge_dives(const struct dive &a_in, const struct dive &b_in, int o } const dive *a = &a_in; - const dive *b = &a_in; + const dive *b = &b_in; if (is_dc_planner(&a->dcs[0])) std::swap(a, b);