Skip to content

Commit

Permalink
xrCore/_obb: Fixed compilation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaffeine committed Nov 6, 2015
1 parent 0a1afc7 commit 8838d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrCore/_obb.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ typedef _obb<double> Dobb;
template <class T>
BOOL _valid(const _obb<T>& m)
{
return _valid(m_rotate) && _valid(m_translate) && _valid(m_halfsize);
return _valid(m.m_rotate) && _valid(m.m_translate) && _valid(m.m_halfsize);
}

#endif

0 comments on commit 8838d5a

Please sign in to comment.