From 3d59310731d3b4a86650bf3644ba6ded9bf82c45 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sat, 22 Feb 2025 09:58:42 -0700 Subject: [PATCH] Fix regression --- LEGO1/omni/src/video/mxregion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LEGO1/omni/src/video/mxregion.cpp b/LEGO1/omni/src/video/mxregion.cpp index fd1b3dad..54516540 100644 --- a/LEGO1/omni/src/video/mxregion.cpp +++ b/LEGO1/omni/src/video/mxregion.cpp @@ -396,7 +396,7 @@ void MxRegionCursor::PrevSpan(MxRect32& p_rect) MxSpan::MxSpan(MxS32 p_min, MxS32 p_max) { m_min = p_min; - m_max = m_max; + m_max = p_max; m_segList = new MxSegmentList; }