aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Meshing/Mesh.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Physics/Meshing/Mesh.cs')
-rw-r--r--OpenSim/Region/Physics/Meshing/Mesh.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Meshing/Mesh.cs b/OpenSim/Region/Physics/Meshing/Mesh.cs
index ff1f816..94d926a 100644
--- a/OpenSim/Region/Physics/Meshing/Mesh.cs
+++ b/OpenSim/Region/Physics/Meshing/Mesh.cs
@@ -308,7 +308,7 @@ namespace OpenSim.Region.Physics.Meshing
308 if (path == null) 308 if (path == null)
309 return; 309 return;
310 String fileName = name + "_" + title + ".raw"; 310 String fileName = name + "_" + title + ".raw";
311 String completePath = Path.Combine(path, fileName); 311 String completePath = System.IO.Path.Combine(path, fileName);
312 StreamWriter sw = new StreamWriter(completePath); 312 StreamWriter sw = new StreamWriter(completePath);
313 foreach (Triangle t in m_triangles) 313 foreach (Triangle t in m_triangles)
314 { 314 {