diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-03-05 17:20:35 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-03-05 17:20:35 -0800 |
commit | 581de7c7b8025c48e585c1af80e060af94aca328 (patch) | |
tree | d74607d3a789a46a55fb3fbfe3e655e7dbb95fb3 /indra/newview/llpathfindingnavmesh.cpp | |
parent | 58af94e02ff11b878850a758f5b9e4ffb251ddf3 (diff) |
PATH-205,PATH-304: More work to handle downloading of out-of-date navmeshes.
Diffstat (limited to 'indra/newview/llpathfindingnavmesh.cpp')
-rw-r--r-- | indra/newview/llpathfindingnavmesh.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llpathfindingnavmesh.cpp b/indra/newview/llpathfindingnavmesh.cpp index fd1a498e3b..469972efa9 100644 --- a/indra/newview/llpathfindingnavmesh.cpp +++ b/indra/newview/llpathfindingnavmesh.cpp @@ -87,7 +87,7 @@ void LLPathfindingNavMesh::handleNavMeshResult(const LLSD &pContent, U32 pNavMes if ( !valid )
{
llwarns << "Unable to decompress the navmesh llsd." << llendl;
- setRequestStatus(kNavMeshRequestFormatError);
+ setRequestStatus(kNavMeshRequestError);
}
else
{
@@ -104,7 +104,7 @@ void LLPathfindingNavMesh::handleNavMeshResult(const LLSD &pContent, U32 pNavMes else
{
llwarns << "No mesh data received" << llendl;
- setRequestStatus(kNavMeshRequestMessageError);
+ setRequestStatus(kNavMeshRequestError);
}
}
}
@@ -122,7 +122,7 @@ void LLPathfindingNavMesh::handleNavMeshError(U32 pStatus, const std::string &pR mNavMeshData.clear();
if (mNavMeshVersion == pNavMeshVersion)
{
- setRequestStatus(kNavMeshRequestMessageError);
+ setRequestStatus(kNavMeshRequestError);
}
}
|