Clipper: Copy both color sequences in CopyVertex as opposed to one

This is likely an oversight.
This commit is contained in:
Lioncash 2017-08-22 22:45:25 -04:00
parent ffaa9a3bea
commit bc57ab3923
1 changed files with 1 additions and 1 deletions

View File

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