diff options
author | ruslantproductengine <ruslantproductengine@lindenlab.com> | 2015-01-23 15:03:04 +0200 |
---|---|---|
committer | ruslantproductengine <ruslantproductengine@lindenlab.com> | 2015-01-23 15:03:04 +0200 |
commit | 96af4b867ff5b09dc2a9125ff40ce4f27254a070 (patch) | |
tree | c42694788d3536356f7676b60b57df6d2d6f0c66 | |
parent | 3b6e807d195b95b1376f36566e51d1e87dff56cd (diff) |
MAINT-4833 Fixed Warning treated as error
-rwxr-xr-x | indra/newview/llvovolume.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index b483ec283c..fd2e96744a 100755 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -2150,6 +2150,9 @@ bool LLVOVolume::notifyAboutMissingAsset(LLViewerTexture *texture) mat->setSpecularID(LLUUID::null); } break; + case LLRender::NUM_TEXTURE_CHANNELS: + //nothing to do, make compiler happy + break; } //switch } //for |