Fix loop counter

This commit is contained in:
Michał Janiszewski 2016-04-25 21:37:30 +02:00
parent 788747cc4a
commit bb8dc0a880

View file

@ -4447,7 +4447,7 @@ TMosaicFillStyle::TMosaicFillStyle(const TPixel32 &bgColor,
const double maxThickness)
: TSolidColorStyle(bgColor), m_size(size), m_deform(deform), m_minThickness(minThickness), m_maxThickness(maxThickness)
{
for (int i = 0; i < 5; i++)
for (int i = 0; i < 4; i++)
m_pointColor[i] = pointColor[i];
}