mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
Fix Matrix4::operator[] annotation (#1390)
This commit is contained in:

committed by
GitHub

parent
5e5b048b34
commit
ea5a722311
@@ -736,6 +736,7 @@ TimeROI::TimeROI(Tgl::Renderer* p_renderer, ViewLODList* p_lodList, LegoTime p_t
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x100a9b40
|
||||
// FUNCTION: BETA10 0x1018bbf0
|
||||
void TimeROI::FUN_100a9b40(Matrix4& p_matrix, LegoTime p_time)
|
||||
{
|
||||
LegoTime time = p_time - m_time;
|
||||
@@ -747,7 +748,7 @@ void TimeROI::FUN_100a9b40(Matrix4& p_matrix, LegoTime p_time)
|
||||
Vector3 vec(m_local2world[3]);
|
||||
|
||||
targetPosition -= vec;
|
||||
targetPosition /= time * 0.001;
|
||||
targetPosition /= time / 1000.0;
|
||||
|
||||
FUN_100a5a30(targetPosition);
|
||||
}
|
||||
|
Reference in New Issue
Block a user