summaryrefslogtreecommitdiffhomepage
path: root/draw/wireframe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'draw/wireframe.cpp')
-rw-r--r--draw/wireframe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/draw/wireframe.cpp b/draw/wireframe.cpp
index 12734fcd..4a2233f6 100644
--- a/draw/wireframe.cpp
+++ b/draw/wireframe.cpp
@@ -22,7 +22,7 @@ GL::Texture2D make_constant_texture()
.setMagnificationFilter(GL::SamplerFilter::Nearest)
.setMinificationFilter(GL::SamplerFilter::Nearest)
.setStorage(1, GL::textureFormat(img.format()), img.size())
- .setSubImage(0, {}, std::move(img));
+ .setSubImage(0, {}, move(img));
return tex;
}