diff --git a/src/core/gpu_hw.cpp b/src/core/gpu_hw.cpp index 1d49eee81..0925503e3 100644 --- a/src/core/gpu_hw.cpp +++ b/src/core/gpu_hw.cpp @@ -381,7 +381,7 @@ void GPU_HW::LoadVertices() BatchVertex start, end; start.Set(m_drawing_offset.x + pos0.x, m_drawing_offset.y + pos0.y, color0, 0, 0); - end.Set(m_drawing_offset.x + pos1.x, m_drawing_offset.y + pos0.y, color0, 0, 0); + end.Set(m_drawing_offset.x + pos1.x, m_drawing_offset.y + pos1.y, color1, 0, 0); const s32 min_x = std::min(start.x, end.x); const s32 max_x = std::max(start.x, end.x);