mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -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->normal = src->normal;
|
||||
dst->color[0] = src->color[0];
|
||||
dst->color = src->color;
|
||||
|
||||
// todo - s offset
|
||||
dst->texCoords = src->texCoords;
|
||||
|
Reference in New Issue
Block a user