Clear up a few issues revealed upon forced full recompile. (VS is dumb sometimes)
This commit is contained in:
@@ -54,6 +54,7 @@
|
||||
#include "llviewerregion.h"
|
||||
#include "lluictrlfactory.h"
|
||||
#include "llviewerwindow.h"
|
||||
#include "llinventoryicon.h"
|
||||
|
||||
#include "hippogridmanager.h"
|
||||
|
||||
|
||||
@@ -48,6 +48,7 @@
|
||||
#include "llinventorydefines.h"
|
||||
#include "llinventoryfilter.h"
|
||||
#include "llinventoryfunctions.h"
|
||||
#include "llinventoryicon.h"
|
||||
#include "llpreviewanim.h"
|
||||
#include "llpreviewgesture.h"
|
||||
#include "llpreviewnotecard.h"
|
||||
|
||||
@@ -205,15 +205,15 @@ BOOL LLVisualParamHint::render()
|
||||
const std::string& cam_target_mesh_name = mVisualParam->getCameraTargetName();
|
||||
if( !cam_target_mesh_name.empty() )
|
||||
{
|
||||
cam_target_joint = (LLViewerJointMesh*)gAgentAvatarp->getJoint( cam_target_mesh_name );
|
||||
cam_target_joint = dynamic_cast<LLViewerJointMesh*>(gAgentAvatarp->getJoint( cam_target_mesh_name ));
|
||||
}
|
||||
if( !cam_target_joint )
|
||||
{
|
||||
cam_target_joint = (LLViewerJointMesh*)gMorphView->getCameraTargetJoint();
|
||||
cam_target_joint = dynamic_cast<LLViewerJointMesh*>(gMorphView->getCameraTargetJoint());
|
||||
}
|
||||
if( !cam_target_joint )
|
||||
{
|
||||
cam_target_joint = (LLViewerJointMesh*)gAgentAvatarp->getJoint("mHead");
|
||||
cam_target_joint = dynamic_cast<LLViewerJointMesh*>(gAgentAvatarp->getJoint("mHead"));
|
||||
}
|
||||
|
||||
LLQuaternion avatar_rotation;
|
||||
|
||||
@@ -16,6 +16,7 @@ include(LLImage)
|
||||
include(LLCharacter)
|
||||
include(LLInventory)
|
||||
include(LLPrimitive)
|
||||
include(LLAppearance)
|
||||
|
||||
include_directories(
|
||||
${CMAKE_SOURCE_DIR}/newview
|
||||
@@ -32,6 +33,7 @@ include_directories(
|
||||
${LLCHARACTER_INCLUDE_DIRS}
|
||||
${LLINVENTORY_INCLUDE_DIRS}
|
||||
${LLPRIMITIVE_INCLUDE_DIRS}
|
||||
${LLAPPEARANCE_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
set(statemachine_SOURCE_FILES
|
||||
|
||||
Reference in New Issue
Block a user