From 79d25575aaf713c7ddf442260aa0446ed3a602a9 Mon Sep 17 00:00:00 2001 From: jonschz Date: Fri, 4 Oct 2024 16:27:11 +0200 Subject: [PATCH] Address review comment --- LEGO1/lego/sources/anim/legoanim.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LEGO1/lego/sources/anim/legoanim.h b/LEGO1/lego/sources/anim/legoanim.h index 2b273603..0badeae9 100644 --- a/LEGO1/lego/sources/anim/legoanim.h +++ b/LEGO1/lego/sources/anim/legoanim.h @@ -28,10 +28,10 @@ class LegoAnimKey { void FUN_100739a0(MxS32 p_param) { if (p_param) { - m_flags |= 0x01; + m_flags |= c_bit1; } else { - m_flags &= 0xfe; + m_flags &= ~c_bit1; } }