From d61c4f736e4f45ba80c4c3c91839b7f1b19aa11a Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sat, 16 Sep 2023 16:22:09 +0200 Subject: [PATCH] Update mxpoint32.h --- LEGO1/mxpoint32.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LEGO1/mxpoint32.h b/LEGO1/mxpoint32.h index 767639d5..cc0f6327 100755 --- a/LEGO1/mxpoint32.h +++ b/LEGO1/mxpoint32.h @@ -7,10 +7,10 @@ class MxPoint32 { public: MxPoint32() { } - MxPoint32(MxS32 x, MxS32 y) + MxPoint32(MxS32 p_x, MxS32 p_y) { - this->m_x = x; - this->m_y = y; + this->m_x = p_x; + this->m_y = p_y; } MxS32 m_x;