diff --git a/indra/llcommon/llerror.h b/indra/llcommon/llerror.h index 86439e858fbeccf2036d0ba0ef70a4efb0795141..ebca19409f1ebdabc0804ad9d04f96eff1747bbf 100644 --- a/indra/llcommon/llerror.h +++ b/indra/llcommon/llerror.h @@ -42,11 +42,8 @@ const int LL_ERR_NOERR = 0; // #define RELEASE_SHOW_DEBUG // Define this if you want your release builds to show lldebug output. #define RELEASE_SHOW_INFO // Define this if you want your release builds to show llinfo output #define RELEASE_SHOW_WARN // Define this if you want your release builds to show llwarn output. -#if LL_TEST #define ENABLE_DEBUG_MACRO 1 -#else -#define ENABLE_DEBUG_MACRO 0 -#endif + #ifdef _DEBUG #define SHOW_DEBUG diff --git a/indra/newview/llviewerwearable.cpp b/indra/newview/llviewerwearable.cpp index 2d7a0f920f1d4dbfca712f3658c16f9b57525151..2d7f1f32075dca76d7101303c8d465331fdfb6a3 100644 --- a/indra/newview/llviewerwearable.cpp +++ b/indra/newview/llviewerwearable.cpp @@ -317,9 +317,9 @@ LLUUID LLViewerWearable::getDefaultTextureImageID(ETextureIndex index) const //virtual void LLViewerWearable::writeToAvatar(LLAvatarAppearance *avatarp) { - LLVOAvatarSelf* viewer_avatar = dynamic_cast<LLVOAvatarSelf*>(avatarp); + if (!avatarp || !avatarp->isSelf()) return; - if (!avatarp || !viewer_avatar) return; + LLVOAvatarSelf* viewer_avatar = static_cast<LLVOAvatarSelf*>(avatarp); if (!viewer_avatar->isValid()) return;