aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-01-15 00:28:58 +0000
committerJustin Clark-Casey (justincc)2014-01-15 00:28:58 +0000
commit91d86301efd478f9a10a077597e9c631e029457b (patch)
tree0c298b09c55bd7d8d5eb1bb5b9d7a83c2173f65c /OpenSim/Region/ClientStack
parentFix false positive test failure in TestRepeatSameDrawContainingImageReusingTe... (diff)
parentDynamically adjust to the number of visual params sent. (diff)
downloadopensim-SC_OLD-91d86301efd478f9a10a077597e9c631e029457b.zip
opensim-SC_OLD-91d86301efd478f9a10a077597e9c631e029457b.tar.gz
opensim-SC_OLD-91d86301efd478f9a10a077597e9c631e029457b.tar.bz2
opensim-SC_OLD-91d86301efd478f9a10a077597e9c631e029457b.tar.xz
Merge branch '0.7.6-post-fixes' of ssh://opensimulator.org/var/git/opensim into 0.7.6-post-fixes
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index c27e613..0b8aceb 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -3631,7 +3631,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
3631 3631
3632 AvatarAppearancePacket avp = (AvatarAppearancePacket)PacketPool.Instance.GetPacket(PacketType.AvatarAppearance); 3632 AvatarAppearancePacket avp = (AvatarAppearancePacket)PacketPool.Instance.GetPacket(PacketType.AvatarAppearance);
3633 // TODO: don't create new blocks if recycling an old packet 3633 // TODO: don't create new blocks if recycling an old packet
3634 avp.VisualParam = new AvatarAppearancePacket.VisualParamBlock[218]; 3634 avp.VisualParam = new AvatarAppearancePacket.VisualParamBlock[visualParams.Length];
3635 avp.ObjectData.TextureEntry = textureEntry; 3635 avp.ObjectData.TextureEntry = textureEntry;
3636 3636
3637 AvatarAppearancePacket.VisualParamBlock avblock = null; 3637 AvatarAppearancePacket.VisualParamBlock avblock = null;