diff options
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs index e91ee51..905522d 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | |||
@@ -1358,14 +1358,14 @@ Console.WriteLine("ZProcessTaints for " + Name); | |||
1358 | /// </summary> | 1358 | /// </summary> |
1359 | /// <param name="m_targetSpace"></param> | 1359 | /// <param name="m_targetSpace"></param> |
1360 | /// <param name="_mesh">/param> | 1360 | /// <param name="_mesh">/param> |
1361 | public void CreateGeom(IntPtr m_targetSpace, IMesh _mesh) | 1361 | public void CreateGeom(IntPtr m_targetSpace, IMesh mesh) |
1362 | { | 1362 | { |
1363 | #if SPAM | 1363 | #if SPAM |
1364 | Console.WriteLine("CreateGeom:"); | 1364 | Console.WriteLine("CreateGeom:"); |
1365 | #endif | 1365 | #endif |
1366 | if (_mesh != null) | 1366 | if (mesh != null) |
1367 | { | 1367 | { |
1368 | setMesh(_parent_scene, _mesh); | 1368 | setMesh(_parent_scene, mesh); |
1369 | } | 1369 | } |
1370 | else | 1370 | else |
1371 | { | 1371 | { |