diff options
Diffstat (limited to 'loader/error-tex.cpp')
-rw-r--r-- | loader/error-tex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/error-tex.cpp b/loader/error-tex.cpp index 16df2b43..dac5992c 100644 --- a/loader/error-tex.cpp +++ b/loader/error-tex.cpp @@ -18,7 +18,7 @@ Trade::ImageData2D loader_impl::make_error_texture(Vector2ui size) *(Vector4ub*)data = magenta; data += 4; } - auto img = Trade::ImageData2D{PixelFormat::RGBA8Unorm, Vector2i(size), std::move(array)}; + auto img = Trade::ImageData2D{PixelFormat::RGBA8Unorm, Vector2i(size), move(array)}; return img; } |