Tiny fixies from Phoenix

This commit is contained in:
Siana Gearz
2012-03-04 09:39:28 +01:00
parent 251b0fa5c0
commit 0a11f09918
2 changed files with 2 additions and 1 deletions

View File

@@ -704,7 +704,7 @@ void LLFloaterAvatarList::refreshAvatarList()
LLVector3d delta = position - mypos; LLVector3d delta = position - mypos;
F32 distance = (F32)delta.magVec(); F32 distance = (F32)delta.magVec();
if (position.mdV[VZ] == 0.0) if (position.mdV[VZ] == 0.f || position.mdV[VZ] == 1020.f)
{ {
UnknownAltitude = true; UnknownAltitude = true;
distance = 9000.0; distance = 9000.0;

View File

@@ -124,6 +124,7 @@ void LLWLAnimator::update(LLWLParamSet& curParams)
// at the end of the interp cycle, force the end settings to get applied // at the end of the interp cycle, force the end settings to get applied
curParams.setAll(mInterpEndWL->getAll()); curParams.setAll(mInterpEndWL->getAll());
} }
LLWaterParamManager::getInstance()->mCurParams.setAll(mInterpEndWater->getAll());
mIsInterpolating = false; mIsInterpolating = false;
mIsInterpolatingSky = false; mIsInterpolatingSky = false;
return; return;