From 25983c1ba9428c5cd8aabb1f81381c60378db9ab Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 20 Nov 2015 18:25:56 +0000 Subject: remove the hard to maintain Ode.Net wrapper only in use by old ode --- OpenSim/Region/PhysicsModules/Ode/ODERayCastRequestManager.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'OpenSim/Region/PhysicsModules/Ode/ODERayCastRequestManager.cs') diff --git a/OpenSim/Region/PhysicsModules/Ode/ODERayCastRequestManager.cs b/OpenSim/Region/PhysicsModules/Ode/ODERayCastRequestManager.cs index 6199387..e39b8c7 100644 --- a/OpenSim/Region/PhysicsModules/Ode/ODERayCastRequestManager.cs +++ b/OpenSim/Region/PhysicsModules/Ode/ODERayCastRequestManager.cs @@ -32,7 +32,6 @@ using System.Runtime.InteropServices; using System.Text; using OpenMetaverse; using OpenSim.Region.PhysicsModules.SharedBase; -using Ode.NET; using log4net; namespace OpenSim.Region.PhysicsModule.ODE @@ -358,7 +357,7 @@ namespace OpenSim.Region.PhysicsModule.ODE lock (contacts) { - count = d.Collide(g1, g2, contacts.GetLength(0), contacts, d.ContactGeom.SizeOf); + count = d.Collide(g1, g2, contacts.GetLength(0), contacts, d.ContactGeom.unmanagedSizeOf); } } catch (SEHException) -- cgit v1.1