From d95e94fa0708083f85a9740c855c1eb31284a519 Mon Sep 17 00:00:00 2001 From: Shyotl Date: Wed, 23 Jul 2014 16:55:46 -0500 Subject: [PATCH] Missed a cast to LLMatrix4. Was causing assorted wonkiness (most noticeably, mouselook oddities) --- indra/newview/llviewerobject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llviewerobject.cpp b/indra/newview/llviewerobject.cpp index 25b251dde..a66e20691 100644 --- a/indra/newview/llviewerobject.cpp +++ b/indra/newview/llviewerobject.cpp @@ -3722,7 +3722,7 @@ const LLQuaternion LLViewerObject::getRenderRotation() const } else { - ret = LLQuaternion(mDrawable->getWorldMatrix().getF32ptr()); + ret = LLQuaternion(LLMatrix4(mDrawable->getWorldMatrix().getF32ptr())); } }