diff options
Merge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/Tests/ODETestClass.cs')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/Tests/ODETestClass.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/Tests/ODETestClass.cs b/OpenSim/Region/Physics/OdePlugin/Tests/ODETestClass.cs index 7d748fd..b186175 100644 --- a/OpenSim/Region/Physics/OdePlugin/Tests/ODETestClass.cs +++ b/OpenSim/Region/Physics/OdePlugin/Tests/ODETestClass.cs | |||
@@ -56,8 +56,8 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
56 | ps = cbt.GetScene("test"); | 56 | ps = cbt.GetScene("test"); |
57 | // Initializing Physics Scene. | 57 | // Initializing Physics Scene. |
58 | ps.Initialise(imp.GetMesher(),null); | 58 | ps.Initialise(imp.GetMesher(),null); |
59 | float[] _heightmap = new float[256 * 256]; | 59 | float[] _heightmap = new float[(int)Constants.RegionSize * (int)Constants.RegionSize]; |
60 | for (int i = 0; i<(256*256);i++) | 60 | for (int i = 0; i < ((int)Constants.RegionSize * (int)Constants.RegionSize); i++) |
61 | { | 61 | { |
62 | _heightmap[i] = 21f; | 62 | _heightmap[i] = 21f; |
63 | } | 63 | } |