aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorUbitUmarov2012-10-13 00:41:19 +0100
committerUbitUmarov2012-10-13 00:41:19 +0100
commit48d2258f41b3ce8e9a1bfe98e9835f5ea947a815 (patch)
tree3431f631b866234da7dd8f9843746739ffd74541
parentmissing file (diff)
downloadopensim-SC_OLD-48d2258f41b3ce8e9a1bfe98e9835f5ea947a815.zip
opensim-SC_OLD-48d2258f41b3ce8e9a1bfe98e9835f5ea947a815.tar.gz
opensim-SC_OLD-48d2258f41b3ce8e9a1bfe98e9835f5ea947a815.tar.bz2
opensim-SC_OLD-48d2258f41b3ce8e9a1bfe98e9835f5ea947a815.tar.xz
longer meshs identification keys, so first part on disk cache is it's asset id
-rw-r--r--OpenSim/Region/Physics/Manager/IMesher.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Manager/IMesher.cs b/OpenSim/Region/Physics/Manager/IMesher.cs
index d7ab20b..d0e3996 100644
--- a/OpenSim/Region/Physics/Manager/IMesher.cs
+++ b/OpenSim/Region/Physics/Manager/IMesher.cs
@@ -68,10 +68,12 @@ namespace OpenSim.Region.Physics.Manager
68 public ulong hashA; 68 public ulong hashA;
69 [FieldOffset(8)] 69 [FieldOffset(8)]
70 public ulong hashB; 70 public ulong hashB;
71 [FieldOffset(16)]
72 public ulong hashC;
71 73
72 public override string ToString() 74 public override string ToString()
73 { 75 {
74 return uuid.ToString(); 76 return uuid.ToString() + "-" + hashC.ToString() ;
75 } 77 }
76 } 78 }
77 79