From 38b7f033b28027711a03e5a28d6ea384be909318 Mon Sep 17 00:00:00 2001 From: prep <prep@lindenlab.com> Date: Thu, 17 Nov 2011 17:33:49 -0500 Subject: [PATCH] navmeshdata is now parsed as binary --- indra/llrender/llgl.h | 2 +- indra/newview/llnavmeshstation.cpp | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/indra/llrender/llgl.h b/indra/llrender/llgl.h index 5b2fcf422c8..d736133f3ff 100644 --- a/indra/llrender/llgl.h +++ b/indra/llrender/llgl.h @@ -33,7 +33,7 @@ #include <boost/unordered_map.hpp> #include <list> -//#include "llerror.h" +#include "llerror.h" #include "v4color.h" #include "llstring.h" #include "stdtypes.h" diff --git a/indra/newview/llnavmeshstation.cpp b/indra/newview/llnavmeshstation.cpp index 6f491c34c9b..2f7e62b8aef 100644 --- a/indra/newview/llnavmeshstation.cpp +++ b/indra/newview/llnavmeshstation.cpp @@ -105,14 +105,13 @@ class LLNavMeshDownloadResponder : public LLCurl::Responder if ( content.has("error") ) { llwarns << "Error on fetched data"<< llendl; + llinfos<<"LLsd buffer on error"<<ll_pretty_print_sd(content)<<llendl; } else { LLNavMeshDownloadObserver* pObserver = mObserverHandle.get(); if ( pObserver ) { - llinfos<<"Do something immensely important w/content"<<llendl; - llinfos<<"LLsd buffer"<<ll_pretty_print_sd(content)<<llendl; if ( content.has("navmesh_data") ) { @@ -125,7 +124,7 @@ class LLNavMeshDownloadResponder : public LLCurl::Responder } } } - } +} private: //Observer handle -- GitLab