diff options
author | brad kittenbrink <brad@lindenlab.com> | 2009-09-01 18:16:04 -0400 |
---|---|---|
committer | brad kittenbrink <brad@lindenlab.com> | 2009-09-01 18:16:04 -0400 |
commit | 0f0853a6fe23c6eb4341d6a5a0752e224cdf1b22 (patch) | |
tree | 701f4dc5ecd3fc0b9b5f6aec30b0b29134754a2a /indra/llprimitive | |
parent | f4f02f0f34d5a26472ea4a6c681a380a2174d1bd (diff) |
Fix up some more post-merge breakage.
Diffstat (limited to 'indra/llprimitive')
-rw-r--r-- | indra/llprimitive/llprimitive.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llprimitive/llprimitive.cpp b/indra/llprimitive/llprimitive.cpp index 2177f5c365..dcfb5cfae6 100644 --- a/indra/llprimitive/llprimitive.cpp +++ b/indra/llprimitive/llprimitive.cpp @@ -1902,7 +1902,7 @@ bool LLLightImageParams::fromLLSD(LLSD& sd) if (sd.has("texture")) { setLightTexture( sd["texture"] ); - setParams( sd["params"] ); + setParams( LLVector3( sd["params"] ) ); return true; } |