diff --git a/src/Text/Renderer.cpp b/src/Text/Renderer.cpp index 545e60f53..8effda67e 100644 --- a/src/Text/Renderer.cpp +++ b/src/Text/Renderer.cpp @@ -55,6 +55,9 @@ template void createIndices(void* output, const UnsignedInt glyphCount) } struct Vertex { + #ifdef CORRADE_MSVC2013_COMPATIBILITY + Vertex(const Vector2& position, const Vector2& textureCoordinates): position(position), textureCoordinates(textureCoordinates) {} + #endif Vector2 position, textureCoordinates; };