diff options
| author | Lioncash <mathew1800@gmail.com> | 2017-08-22 22:45:25 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2017-08-22 22:45:28 -0400 |
| commit | bc57ab39231b9a6d9b5f1c31b520cdee9716d6df (patch) | |
| tree | 0078c0a14008c1fc48176c9489d7e20dd4222997 /Source/Core | |
| parent | ffaa9a3bea56bd8e82e32e187fd9dbe6ffa00993 (diff) | |
Clipper: Copy both color sequences in CopyVertex as opposed to one
This is likely an oversight.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/VideoBackends/Software/Clipper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/Clipper.cpp b/Source/Core/VideoBackends/Software/Clipper.cpp index 58242c09f9..f527156a27 100644 --- a/Source/Core/VideoBackends/Software/Clipper.cpp +++ b/Source/Core/VideoBackends/Software/Clipper.cpp @@ -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; |
