summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorKitty Barnett <develop@catznip.com>2012-12-02 01:04:56 +0100
committerKitty Barnett <develop@catznip.com>2012-12-02 01:04:56 +0100
commit2feac960904b0b94d05253e4c345f1853ed3bbbf (patch)
treea77f2fa5c805daa140111b57d205feccddbae99f /indra/newview
parent566fbe751a4094db7c3d553d3866f0c057db18c9 (diff)
Fixed two minor issues (mDiffuseAlphaMode and mAlphaMaskCutoff were reversed; specular rotation had wrong format specifier)
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llfloaterdebugmaterials.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterdebugmaterials.cpp b/indra/newview/llfloaterdebugmaterials.cpp
index e86777bfe0..026fd1a28c 100644
--- a/indra/newview/llfloaterdebugmaterials.cpp
+++ b/indra/newview/llfloaterdebugmaterials.cpp
@@ -1104,7 +1104,7 @@ void LLFloaterDebugMaterials::parseGetResponse()
specularMapRowParams.columns.add(cellParams);
cellParams.column = "specular_map_list_rotation";
- cellParams.value = llformat("%d", material.getSpecularRotation());
+ cellParams.value = llformat("%f", material.getSpecularRotation());
specularMapRowParams.columns.add(cellParams);
const LLColor4U& specularColor = material.getSpecularLightColor();