Remove explicit truth tests

This commit is contained in:
Christian Semmler
2024-04-17 08:47:23 -04:00
parent ce1756bf7a
commit d169349bd6
3 changed files with 3 additions and 3 deletions

View File

@@ -66,7 +66,7 @@ MxBool LegoControlManager::FUN_10029210(LegoEventNotificationParam& p_param, MxP
m_event.SetKey(p_param.GetKey());
if (p_param.GetType() == c_notificationButtonUp) {
if (m_unk0x10 == TRUE) {
if (m_unk0x10) {
m_unk0x10 = FALSE;
return TRUE;
}