diff options
| author | prep linden <prep@lindenlab.com> | 2012-05-31 17:50:33 -0400 | 
|---|---|---|
| committer | prep linden <prep@lindenlab.com> | 2012-05-31 17:50:33 -0400 | 
| commit | 0a10ff0f78ae779ff52e9bd475b4bca534ea1f30 (patch) | |
| tree | c710f5bc0a8511f7511dae6d60f206b9a78a6ed5 /indra/newview | |
| parent | 8a66a9942115d85b8212541c14a3fe4909b02066 (diff) | |
WIP:build fix
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llpathfindingcharacter.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/indra/newview/llpathfindingcharacter.cpp b/indra/newview/llpathfindingcharacter.cpp index 011a736568..c7843b8fee 100644 --- a/indra/newview/llpathfindingcharacter.cpp +++ b/indra/newview/llpathfindingcharacter.cpp @@ -125,7 +125,9 @@ void LLPathfindingCharacter::parseCharacterData(const LLSD &pCharacterData)  	mRadius = pCharacterData.get(CHARACTER_RADIUS_FIELD).asReal();  	//Create the rep inside the pathing library -	LLPathingLib::getInstance()->createPhysicsCapsuleRep( mLength, mRadius, mIsHorizontal, LLVector3(0,0,0), getUUID() ); +	LLVector3 empty(0,0,0); +	const LLUUID id = getUUID(); +	LLPathingLib::getInstance()->createPhysicsCapsuleRep( mLength, mRadius, mIsHorizontal, empty, id );  #endif // SERVER_SIDE_CHARACTER_SHAPE_ROLLOUT_COMPLETE  } | 
