Figured out that vector

This commit is contained in:
Phillip 2016-02-11 23:12:17 -08:00
parent 23b787cdf1
commit 49a9886a7c
1 changed files with 1 additions and 2 deletions

View File

@ -117,8 +117,7 @@ bool CRERandom::GetValue(int frame, float& valOut) const
bool CREDotProduct::GetValue(int frame, float& valOut) const bool CREDotProduct::GetValue(int frame, float& valOut) const
{ {
Zeus::CVector3f a; /* = someVec @ 805A66A0 */ Zeus::CVector3f a, b;
Zeus::CVector3f b; /* = someVec @ 805A66A0 */
x4_a->GetValue(frame, a); x4_a->GetValue(frame, a);
x8_b->GetValue(frame, b); x8_b->GetValue(frame, b);
valOut = a.dot(b); valOut = a.dot(b);