Initialize bool members with FALSE

This commit is contained in:
Christian Semmler 2023-10-03 14:50:14 -04:00 committed by GitHub
parent 6c86503d35
commit f9cd17e3dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,8 +27,8 @@ LegoInputManager::LegoInputManager()
m_joyid = -1;
m_joystickIndex = -1;
m_useJoystick = FALSE;
m_unk0x335 = 0;
m_unk0x336 = 0;
m_unk0x335 = FALSE;
m_unk0x336 = FALSE;
m_unk0x74 = 0x19;
m_timeout = 1000;
}