diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llvoavatarself.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/llvoavatarself.h | 2 | 
2 files changed, 2 insertions, 4 deletions
| diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index fe6990eae9..c15dbeb8c6 100644 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -87,14 +87,14 @@ using namespace LLVOAvatarDefines;  struct LocalTextureData  {  	LocalTextureData() :  -		mIsBakedReady(FALSE),  +		mIsBakedReady(false),   		mDiscard(MAX_DISCARD_LEVEL+1),   		mImage(NULL),   		mWearableID(IMG_DEFAULT_AVATAR),  		mTexEntry(NULL)  	{}  	LLPointer<LLViewerFetchedTexture> mImage; -	BOOL mIsBakedReady; +	bool mIsBakedReady;  	S32 mDiscard;  	LLUUID mWearableID;	// UUID of the wearable that this texture belongs to, not of the image itself  	LLTextureEntry *mTexEntry; diff --git a/indra/newview/llvoavatarself.h b/indra/newview/llvoavatarself.h index 4960d4d103..4856e82275 100644 --- a/indra/newview/llvoavatarself.h +++ b/indra/newview/llvoavatarself.h @@ -124,12 +124,10 @@ public:  public:  	/*virtual*/ BOOL    updateIsFullyLoaded();  private: -	BOOL                mIsBaked; // are the stored baked textures up to date?  	//--------------------------------------------------------------------  	// Region state  	//-------------------------------------------------------------------- -private:  	U64				mLastRegionHandle;  	LLFrameTimer	mRegionCrossingTimer;  	S32				mRegionCrossingCount; | 
