disambiguate System.Path (preparation for new PrimMesher)

prioritization
dahlia 2009-10-11 01:30:24 -07:00
parent 01783877ec
commit 41b27ef064
1 changed files with 1 additions and 1 deletions

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)
{