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 | 2eecf882b1cdc63615f3ecd01860d0d5bbdd60b0 (patch) | |
| tree | 124e7bd6fbc678fe2098c2a384ec08f20314cecb | |
| parent | bb3517c24e77e7fdea915a8a57326e10e8261d7c (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 |
