mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Clipper: Copy both color sequences in CopyVertex as opposed to one
This is likely an oversight.
This commit is contained in:
@ -339,7 +339,7 @@ static void CopyVertex(OutputVertexData* dst, const OutputVertexData* src, float
|
|||||||
dst->screenPosition.z = src->screenPosition.z;
|
dst->screenPosition.z = src->screenPosition.z;
|
||||||
|
|
||||||
dst->normal = src->normal;
|
dst->normal = src->normal;
|
||||||
dst->color[0] = src->color[0];
|
dst->color = src->color;
|
||||||
|
|
||||||
// todo - s offset
|
// todo - s offset
|
||||||
dst->texCoords = src->texCoords;
|
dst->texCoords = src->texCoords;
|
||||||
|
Reference in New Issue
Block a user