aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authoropensim mirror account2010-10-24 16:40:06 -0700
committeropensim mirror account2010-10-24 16:40:06 -0700
commita2c0ee8da7450b3117cae12fed9496f4576d05ed (patch)
tree570f90a54a035a1cebd160a66369d53d12935053 /OpenSim
parentMerge branch 'master' of /var/git/opensim/ (diff)
parent* Updated libomv to r3461 (diff)
downloadopensim-SC_OLD-a2c0ee8da7450b3117cae12fed9496f4576d05ed.zip
opensim-SC_OLD-a2c0ee8da7450b3117cae12fed9496f4576d05ed.tar.gz
opensim-SC_OLD-a2c0ee8da7450b3117cae12fed9496f4576d05ed.tar.bz2
opensim-SC_OLD-a2c0ee8da7450b3117cae12fed9496f4576d05ed.tar.xz
Merge branch 'master' of /var/git/opensim/
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Physics/Meshing/Meshmerizer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
index 1257804..d770ad1 100644
--- a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
+++ b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
@@ -287,7 +287,7 @@ namespace OpenSim.Region.Physics.Meshing
287 long start = 0; 287 long start = 0;
288 using (MemoryStream data = new MemoryStream(primShape.SculptData)) 288 using (MemoryStream data = new MemoryStream(primShape.SculptData))
289 { 289 {
290 meshOsd = (OSDMap)OSDParser.DeserializeLLSDBinary(data, true); 290 meshOsd = (OSDMap)OSDParser.DeserializeLLSDBinary(data);
291 start = data.Position; 291 start = data.Position;
292 } 292 }
293 293
@@ -324,7 +324,7 @@ namespace OpenSim.Region.Physics.Meshing
324 324
325 byte[] decompressedBuf = outMs.GetBuffer(); 325 byte[] decompressedBuf = outMs.GetBuffer();
326 326
327 decodedMeshOsd = OSDParser.DeserializeLLSDBinary(decompressedBuf, true); 327 decodedMeshOsd = OSDParser.DeserializeLLSDBinary(decompressedBuf);
328 } 328 }
329 } 329 }
330 } 330 }