aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Meshing
diff options
context:
space:
mode:
authorJeff Ames2009-06-04 01:26:31 +0000
committerJeff Ames2009-06-04 01:26:31 +0000
commit1e3f378c57c8447c93799fd0fff2f0cffe7d7bb4 (patch)
treee845395dbc4964aadb6960b01603a96b7d4bedc3 /OpenSim/Region/Physics/Meshing
parentIgnore some generated files. (diff)
downloadopensim-SC_OLD-1e3f378c57c8447c93799fd0fff2f0cffe7d7bb4.zip
opensim-SC_OLD-1e3f378c57c8447c93799fd0fff2f0cffe7d7bb4.tar.gz
opensim-SC_OLD-1e3f378c57c8447c93799fd0fff2f0cffe7d7bb4.tar.bz2
opensim-SC_OLD-1e3f378c57c8447c93799fd0fff2f0cffe7d7bb4.tar.xz
Fix comparison of UUID with null.
Diffstat (limited to 'OpenSim/Region/Physics/Meshing')
-rw-r--r--OpenSim/Region/Physics/Meshing/Meshmerizer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
index 225344b..253f451 100644
--- a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
+++ b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
@@ -184,7 +184,7 @@ namespace OpenSim.Region.Physics.Meshing
184 184
185 if (primShape.SculptEntry) 185 if (primShape.SculptEntry)
186 { 186 {
187 if (cacheSculptMaps && primShape.SculptTexture != null) 187 if (cacheSculptMaps && primShape.SculptTexture != UUID.Zero)
188 { 188 {
189 decodedSculptFileName = System.IO.Path.Combine(decodedScultMapPath, "smap_" + primShape.SculptTexture.ToString()); 189 decodedSculptFileName = System.IO.Path.Combine(decodedScultMapPath, "smap_" + primShape.SculptTexture.ToString());
190 try 190 try