diff options
author | UbitUmarov | 2015-09-06 20:28:59 +0100 |
---|---|---|
committer | UbitUmarov | 2015-09-06 20:28:59 +0100 |
commit | 16025fa34bf8360fe7a886021bc0e6645651da73 (patch) | |
tree | cfcbc416107cbe2dd2ad0c9dcaf0b9a2140377b3 /OpenSim/Region/Framework/Scenes/SimStatsReporter.cs | |
parent | minor change, add a lock we had at avn (diff) | |
download | opensim-SC-16025fa34bf8360fe7a886021bc0e6645651da73.zip opensim-SC-16025fa34bf8360fe7a886021bc0e6645651da73.tar.gz opensim-SC-16025fa34bf8360fe7a886021bc0e6645651da73.tar.bz2 opensim-SC-16025fa34bf8360fe7a886021bc0e6645651da73.tar.xz |
remove a forgotten cast to int
Diffstat (limited to '')
-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 | ||