diff options
author | UbitUmarov | 2015-09-04 14:33:46 +0100 |
---|---|---|
committer | UbitUmarov | 2015-09-04 14:33:46 +0100 |
commit | a54e0339efb3a4e2b3d7c7eb9e4929554fa77615 (patch) | |
tree | e1124278731b63937762956aef37de9c4973648b /OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs | |
parent | use GetTimeStampMS to increase heartbeat and stats timing resolution. some re... (diff) | |
download | opensim-SC-a54e0339efb3a4e2b3d7c7eb9e4929554fa77615.zip opensim-SC-a54e0339efb3a4e2b3d7c7eb9e4929554fa77615.tar.gz opensim-SC-a54e0339efb3a4e2b3d7c7eb9e4929554fa77615.tar.bz2 opensim-SC-a54e0339efb3a4e2b3d7c7eb9e4929554fa77615.tar.xz |
remove a forgotten 1000.9 factor on physics fps
Diffstat (limited to 'OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs')
-rw-r--r-- | OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs index 900e67b..6cad285 100644 --- a/OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/ChOdePlugin/OdePlugin.cs | |||
@@ -3158,7 +3158,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
3158 | } | 3158 | } |
3159 | } // end lock OdeLock | 3159 | } // end lock OdeLock |
3160 | 3160 | ||
3161 | return fps * (float)ODE_STEPSIZE * 1000.0f / timeStep; | 3161 | return fps * (float)ODE_STEPSIZE / timeStep; |
3162 | } // end Simulate | 3162 | } // end Simulate |
3163 | 3163 | ||
3164 | public override void GetResults() | 3164 | public override void GetResults() |