disambiguate System.Path (preparation for new PrimMesher)

This commit is contained in:
dahlia
2009-10-11 01:30:24 -07:00
parent 01783877ec
commit 41b27ef064

View File

@@ -308,7 +308,7 @@ namespace OpenSim.Region.Physics.Meshing
if (path == null)
return;
String fileName = name + "_" + title + ".raw";
String completePath = Path.Combine(path, fileName);
String completePath = System.IO.Path.Combine(path, fileName);
StreamWriter sw = new StreamWriter(completePath);
foreach (Triangle t in m_triangles)
{