This commit is contained in:
Christian Semmler 2024-03-08 14:12:52 -05:00
parent fa1f8786c2
commit 42cec34d4f
2 changed files with 1 additions and 2 deletions

View File

@ -91,7 +91,6 @@ class LegoAnimNodeData : public LegoTreeNodeData {
LegoBool FUN_100a0990(LegoFloat p_time);
const LegoChar* GetName() { return m_name; }
LegoU32 GetNumTranslationKeys() { return (LegoU32) m_numTranslationKeys; }
LegoResult FUN_100a03c0(LegoTime p_time, Matrix4& p_matrix) { return FUN_100a03c0((LegoFloat) p_time, p_matrix); }
LegoBool FUN_100a0990(LegoTime p_time) { return FUN_100a0990((LegoFloat) p_time); }

View File

@ -395,7 +395,7 @@ LegoResult LegoROI::FUN_100a8da0(LegoTreeNode* p_node, const Matrix4& p_matrix,
LegoBool und = data->FUN_100a0990(p_time);
roi->SetUnknown0x0c(und);
for (LegoU32 i = 0; i < data->GetNumTranslationKeys(); i++) {
for (LegoU32 i = 0; i < p_node->GetNumChildren(); i++) {
FUN_100a8da0(p_node->GetChild(i), roi->m_local2world, p_time, roi);
}
}