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/OdePlugin/OdeScene.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 '')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdeScene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdeScene.cs b/OpenSim/Region/Physics/OdePlugin/OdeScene.cs index 559fcbc..0e71e7f 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdeScene.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdeScene.cs | |||
@@ -3312,7 +3312,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
3312 | m_stats[ODETotalFrameMsStatName] += Util.EnvironmentTickCountSubtract(startFrameTick); | 3312 | m_stats[ODETotalFrameMsStatName] += Util.EnvironmentTickCountSubtract(startFrameTick); |
3313 | } | 3313 | } |
3314 | 3314 | ||
3315 | fps *= 1000.0f/timeStep; | 3315 | fps *= 1.0f/timeStep; |
3316 | return fps; | 3316 | return fps; |
3317 | } | 3317 | } |
3318 | 3318 | ||