diff options
author | Teravus Ovares | 2007-11-19 16:12:53 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-11-19 16:12:53 +0000 |
commit | 79e9d4faf9a31998a7e68bd81c6a2723b3c8e8b7 (patch) | |
tree | 6fcb6df621d8c263472017027049a276639cbe6f | |
parent | * Added noisy debug information on the Verbose console to help debugging oddl... (diff) | |
download | opensim-SC_OLD-79e9d4faf9a31998a7e68bd81c6a2723b3c8e8b7.zip opensim-SC_OLD-79e9d4faf9a31998a7e68bd81c6a2723b3c8e8b7.tar.gz opensim-SC_OLD-79e9d4faf9a31998a7e68bd81c6a2723b3c8e8b7.tar.bz2 opensim-SC_OLD-79e9d4faf9a31998a7e68bd81c6a2723b3c8e8b7.tar.xz |
Tweaked for a possibility of 10 elements.
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index d155f05..e1dc9f8 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -101,7 +101,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
101 | 101 | ||
102 | public IntPtr space; | 102 | public IntPtr space; |
103 | // split static geometry collision handling into spaces of 30 meters | 103 | // split static geometry collision handling into spaces of 30 meters |
104 | public IntPtr[,] staticPrimspace = new IntPtr[(int)(275/metersInSpace),(int)(275/metersInSpace)]; | 104 | public IntPtr[,] staticPrimspace = new IntPtr[(int)(300/metersInSpace),(int)(300/metersInSpace)]; |
105 | 105 | ||
106 | public static Object OdeLock = new Object(); | 106 | public static Object OdeLock = new Object(); |
107 | 107 | ||