- removed redundant std::move.

This commit is contained in:
Christoph Oelckers 2018-12-16 11:29:22 +01:00
parent 1422a95aa8
commit 881fc89fe8
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}