Clipper: Copy both color sequences in CopyVertex as opposed to one
This is likely an oversight.
This commit is contained in:
parent
ffaa9a3bea
commit
bc57ab3923
|
@ -339,7 +339,7 @@ static void CopyVertex(OutputVertexData* dst, const OutputVertexData* src, float
|
|||
dst->screenPosition.z = src->screenPosition.z;
|
||||
|
||||
dst->normal = src->normal;
|
||||
dst->color[0] = src->color[0];
|
||||
dst->color = src->color;
|
||||
|
||||
// todo - s offset
|
||||
dst->texCoords = src->texCoords;
|
||||
|
|
Loading…
Reference in New Issue