Match LegoHideAnimPresenter::FUN_1006db60 (#1414)

* Match `LegoHideAnimPresenter::FUN_1006db60`

* Remove comment
This commit is contained in:
Christian Semmler
2025-03-16 14:57:23 -07:00
committed by GitHub
parent 401fa7674e
commit e9467864d8
3 changed files with 14 additions and 3 deletions

View File

@@ -45,7 +45,15 @@ public:
LegoS32 VTable0x04() override; // vtable+0x04
// FUNCTION: BETA10 0x100270c0
LegoU32 GetFlag0x10() { return m_flags & c_bit5 ? FALSE : TRUE; }
LegoU32 GetFlag0x10()
{
if (m_flags & c_bit5) {
return FALSE;
}
else {
return TRUE;
}
}
// TODO: Other BETA10 reference at 0x1001c9e0, not sure what is going on
// FUNCTION: BETA10 0x1001ff80
@@ -57,6 +65,7 @@ public:
// FUNCTION: BETA10 0x1001c9b0
const LegoChar* GetName() { return m_name; }
// FUNCTION: BETA10 0x1005d5f0
void SetFlag0x10(LegoU32 p_disable)
{
if (p_disable) {