From 881fc89fe8eb14e824933068ed4d70139f735332 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 16 Dec 2018 11:29:22 +0100 Subject: [PATCH] - removed redundant std::move. --- src/gl/textures/gl_hwtexture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gl/textures/gl_hwtexture.cpp b/src/gl/textures/gl_hwtexture.cpp index 01bfdf1b66..9c5f7b8943 100644 --- a/src/gl/textures/gl_hwtexture.cpp +++ b/src/gl/textures/gl_hwtexture.cpp @@ -335,7 +335,7 @@ bool FHardwareTexture::BindOrCreate(FTexture *tex, int texunit, int clampmode, i if (!tex->isHardwareCanvas()) { - texbuffer = std::move(tex->CreateTexBuffer(translation, flags | CTF_ProcessData)); + texbuffer = tex->CreateTexBuffer(translation, flags | CTF_ProcessData); w = texbuffer.mWidth; h = texbuffer.mHeight; }