From 5b90c94926e23e9174b2367143d82c8a5fa9e294 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Fri, 4 Jul 2025 19:32:43 +0200 Subject: [PATCH] [cpp] 4.3 porting WIP --- spine-cpp/spine-cpp/src/spine/MeshAttachment.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-cpp/spine-cpp/src/spine/MeshAttachment.cpp b/spine-cpp/spine-cpp/src/spine/MeshAttachment.cpp index 41804cf9c..6514de8ab 100644 --- a/spine-cpp/spine-cpp/src/spine/MeshAttachment.cpp +++ b/spine-cpp/spine-cpp/src/spine/MeshAttachment.cpp @@ -218,7 +218,7 @@ Attachment *MeshAttachment::copy() { copy->_hullLength = _hullLength; // Nonessential. - copy->_edges.clearAndAddAll(copy->_edges); + copy->_edges.clearAndAddAll(_edges); copy->_width = _width; copy->_height = _height; return copy;