Update mxpoint32.h

This commit is contained in:
Christian Semmler 2023-09-16 16:22:09 +02:00 committed by GitHub
parent 7e1ca881d9
commit d61c4f736e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;