Fix regression

This commit is contained in:
Christian Semmler 2025-02-22 09:58:42 -07:00
parent 6fd7da214a
commit 3d59310731

View File

@ -396,7 +396,7 @@ void MxRegionCursor::PrevSpan(MxRect32& p_rect)
MxSpan::MxSpan(MxS32 p_min, MxS32 p_max) MxSpan::MxSpan(MxS32 p_min, MxS32 p_max)
{ {
m_min = p_min; m_min = p_min;
m_max = m_max; m_max = p_max;
m_segList = new MxSegmentList; m_segList = new MxSegmentList;
} }