diff options
author | Graham Madarasz <graham@lindenlab.com> | 2013-05-14 08:25:42 -0700 |
---|---|---|
committer | Graham Madarasz <graham@lindenlab.com> | 2013-05-14 08:25:42 -0700 |
commit | 8b6be5c667230c61d0de590de122fdef956150b7 (patch) | |
tree | d92473fcfa7571c0fbe3bfb20075b143dc661fbb /indra/newview/llpanelface.cpp | |
parent | c334a185f331a3392c2d0ccaf8241166ef9d8049 (diff) |
NORSPEC-85 fix default normal vert offset
Diffstat (limited to 'indra/newview/llpanelface.cpp')
-rwxr-xr-x | indra/newview/llpanelface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llpanelface.cpp b/indra/newview/llpanelface.cpp index c9029bfcb0..9d0b9d0cac 100755 --- a/indra/newview/llpanelface.cpp +++ b/indra/newview/llpanelface.cpp @@ -1177,7 +1177,7 @@ void LLPanelFace::updateUI() { F32 get(LLViewerObject* object, S32 face) { - F32 s = 1.f, t = 1.f; + F32 s = 0.f, t = 0.f; LLMaterial* mat = object->getTE(face)->getMaterialParams().get(); if (mat) @@ -1199,7 +1199,7 @@ void LLPanelFace::updateUI() { F32 get(LLViewerObject* object, S32 face) { - F32 s = 1.f, t = 1.f; + F32 s = 0.f, t = 0.f; LLMaterial* mat = object->getTE(face)->getMaterialParams().get(); if (mat) |