Correcting a build error with the release viewer.

master
Stinson Linden 2014-05-08 21:58:51 +01:00
parent 12d44073c8
commit c307bda68a
1 changed files with 5 additions and 1 deletions

View File

@ -1930,7 +1930,11 @@ void LLImageGL::updatePickMask(S32 width, S32 height, const U8* data_in)
return;
}
U32 pickSize = createPickMask(width, height);
#ifdef SHOW_ASSERT
const U32 pickSize = createPickMask(width, height);
#else // SHOW_ASSERT
createPickMask(width, height);
#endif // SHOW_ASSERT
U32 pick_bit = 0;