Address review comment

This commit is contained in:
jonschz 2024-10-04 16:27:11 +02:00
parent 5333459a98
commit 79d25575aa

View File

@ -28,10 +28,10 @@ class LegoAnimKey {
void FUN_100739a0(MxS32 p_param) void FUN_100739a0(MxS32 p_param)
{ {
if (p_param) { if (p_param) {
m_flags |= 0x01; m_flags |= c_bit1;
} }
else { else {
m_flags &= 0xfe; m_flags &= ~c_bit1;
} }
} }