Update miniwin/miniwin/src/include/miniwin_d3drmmesh_p.h

Co-authored-by: Anonymous Maarten <madebr@users.noreply.github.com>
This commit is contained in:
Anders Jenbo 2025-05-22 04:33:11 +02:00 committed by GitHub
parent ca825e8047
commit fcb6e8865e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,8 +45,8 @@ struct MeshGroup {
material = other.material;
quality = other.quality;
vertexPerFace = other.vertexPerFace;
vertices = other.vertices;
faces = other.faces;
vertices = std::move(other.vertices);
faces = std::move(other.faces);
other.texture = nullptr;
other.material = nullptr;
return *this;