diff options
author | Teravus Ovares | 2007-11-19 12:28:00 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-11-19 12:28:00 +0000 |
commit | 2910f1b9490134ffae1ef0679a4371a79cd07165 (patch) | |
tree | 2a16901e847146ba7ac8500a1691ba18aaa100e9 /OpenSim/Region | |
parent | * Changed namespace (diff) | |
download | opensim-SC_OLD-2910f1b9490134ffae1ef0679a4371a79cd07165.zip opensim-SC_OLD-2910f1b9490134ffae1ef0679a4371a79cd07165.tar.gz opensim-SC_OLD-2910f1b9490134ffae1ef0679a4371a79cd07165.tar.bz2 opensim-SC_OLD-2910f1b9490134ffae1ef0679a4371a79cd07165.tar.xz |
Fixed - outside of bounds error.
Diffstat (limited to '')
-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 9d5b6e7..4ee94b3 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)(257/metersInSpace),(int)(257/metersInSpace)]; | 104 | public IntPtr[,] staticPrimspace = new IntPtr[(int)(275/metersInSpace),(int)(275/metersInSpace)]; |
105 | 105 | ||
106 | public static Object OdeLock = new Object(); | 106 | public static Object OdeLock = new Object(); |
107 | 107 | ||