Rename c_bit5 to c_ctrl in LegoInputManager, change m_unk0x6c to m_isAccelerating and clear some local unknowns (#1458)

This commit is contained in:
Florian Kaiser
2025-05-09 16:40:00 +02:00
committed by GitHub
parent 711134b3b8
commit 3811d61ea4
4 changed files with 27 additions and 19 deletions

View File

@@ -74,7 +74,7 @@ public:
c_right = 0x02,
c_up = 0x04,
c_down = 0x08,
c_bit5 = 0x10,
c_ctrl = 0x10,
c_leftOrRight = c_left | c_right,
c_upOrDown = c_up | c_down

View File

@@ -155,7 +155,7 @@ protected:
float m_unk0x60; // 0x60
float m_unk0x64; // 0x64
float m_unk0x68; // 0x68
MxBool m_unk0x6c; // 0x6c
MxBool m_isAccelerating; // 0x6c
// one copy of defaults (these can be set by App.)
static int g_defdeadZone;