diff --git a/GPU/Directx9/VertexShaderGeneratorDX9.cpp b/GPU/Directx9/VertexShaderGeneratorDX9.cpp index b540ae8cf1..fbd01f02f0 100644 --- a/GPU/Directx9/VertexShaderGeneratorDX9.cpp +++ b/GPU/Directx9/VertexShaderGeneratorDX9.cpp @@ -526,7 +526,7 @@ void GenerateVertexShaderDX9(int prim, char *buffer, bool useHWTransform) { if (hasTexcoord) { WRITE(p, " Out.v_texcoord = In.texcoord;\n"); } else { - WRITE(p, " Out.v_texcoord = float2(0.0);\n"); + WRITE(p, " Out.v_texcoord = float2(0.0, 0.0);\n"); } } else { if (hasTexcoord) {