From f45c3e2b1f9dab7b5c1c0a29997bd28dd8c7b880 Mon Sep 17 00:00:00 2001 From: Shyotl Date: Thu, 12 May 2011 17:53:41 -0500 Subject: [PATCH] Setting the correct variable on Physics LOD setting change sounds like a good idea. --- indra/newview/llviewercontrol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llviewercontrol.cpp b/indra/newview/llviewercontrol.cpp index f52e1703a..e7b6e535c 100644 --- a/indra/newview/llviewercontrol.cpp +++ b/indra/newview/llviewercontrol.cpp @@ -224,7 +224,7 @@ static bool handleAvatarLODChanged(const LLSD& newvalue) static bool handleAvatarPhysicsLODChanged(const LLSD& newvalue) { - LLVOAvatar::sLODFactor = (F32) newvalue.asReal(); + LLVOAvatar::sPhysicsLODFactor = (F32) newvalue.asReal(); return true; }