diff options
author | prep <none@none> | 2012-06-01 15:48:19 -0400 |
---|---|---|
committer | prep <none@none> | 2012-06-01 15:48:19 -0400 |
commit | a8ff37b95609148c60ddda9acfca65b2b89d6b9d (patch) | |
tree | 391f3c53eebb67a5efedfbfb46b9714a374baffe /indra/newview/pipeline.cpp | |
parent | ed486b3ca00c12aee5b1f594f9f8e507e784996a (diff) |
Migrated physics capsule logic into pathing character object
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 46d257bd87..d54accfea5 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -106,7 +106,7 @@ #include "llnotifications.h" #include "llpathinglib.h" #include "llfloaterpathfindingconsole.h" -#include "llfloaterpathfindingobjects.h" +#include "llfloaterpathfindingcharacters.h" #include "llpathfindingpathtool.h" #ifdef _DEBUG @@ -4362,10 +4362,10 @@ void LLPipeline::renderDebug() { //character floater renderables - LLHandle<LLFloaterPathfindingObjects> pathfindingCharacterHandle = LLFloaterPathfindingObjects::getInstanceHandle(); + LLHandle<LLFloaterPathfindingCharacters> pathfindingCharacterHandle = LLFloaterPathfindingCharacters::getInstanceHandle(); if ( !pathfindingCharacterHandle.isDead() ) { - LLFloaterPathfindingObjects *pathfindingCharacter = pathfindingCharacterHandle.get(); + LLFloaterPathfindingCharacters *pathfindingCharacter = pathfindingCharacterHandle.get(); if ( pathfindingCharacter->getVisible() || gAgentCamera.cameraMouselook() ) { |