diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SimStatsReporter.cs')
-rwxr-xr-x | OpenSim/Region/Framework/Scenes/SimStatsReporter.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs b/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs index b4beff9..66cf14f 100755 --- a/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs +++ b/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs | |||
@@ -357,7 +357,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
357 | float perframefactor = 1.0f / (float)reportedFPS; | 357 | float perframefactor = 1.0f / (float)reportedFPS; |
358 | 358 | ||
359 | // fps considering the integration time | 359 | // fps considering the integration time |
360 | reportedFPS = (int)(reportedFPS * updateFactor); | 360 | reportedFPS = reportedFPS * updateFactor; |
361 | // save the reported value so there is something available for llGetRegionFPS | 361 | // save the reported value so there is something available for llGetRegionFPS |
362 | lastReportedSimFPS = reportedFPS; | 362 | lastReportedSimFPS = reportedFPS; |
363 | 363 | ||