This commit is contained in:
Christian Semmler 2024-12-21 15:34:45 -07:00
parent 5b0d2620b9
commit 0c976c4d8c

View File

@ -607,8 +607,8 @@ MxResult LegoNavController::ProcessKeyboardInput()
bool2 = TRUE;
}
MxFloat val = keyFlags & 0x10 ? 1.0f : 4.0f;
MxFloat val2 = keyFlags & 0x10 ? 1.0f : 2.0f;
MxFloat val = keyFlags & LegoInputManager::c_bit5 ? 1.0f : 4.0f;
MxFloat val2 = keyFlags & LegoInputManager::c_bit5 ? 1.0f : 2.0f;
if (!bool1) {
m_targetRotationalVel = CalculateNewTargetVel(hMax, m_hMax / 2, m_maxRotationalVel);