aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs
diff options
context:
space:
mode:
authorUbitUmarov2015-09-06 20:28:59 +0100
committerUbitUmarov2015-09-06 20:28:59 +0100
commit16025fa34bf8360fe7a886021bc0e6645651da73 (patch)
treecfcbc416107cbe2dd2ad0c9dcaf0b9a2140377b3 /OpenSim/Region/Framework/Scenes/SimStatsReporter.cs
parentminor change, add a lock we had at avn (diff)
downloadopensim-SC_OLD-16025fa34bf8360fe7a886021bc0e6645651da73.zip
opensim-SC_OLD-16025fa34bf8360fe7a886021bc0e6645651da73.tar.gz
opensim-SC_OLD-16025fa34bf8360fe7a886021bc0e6645651da73.tar.bz2
opensim-SC_OLD-16025fa34bf8360fe7a886021bc0e6645651da73.tar.xz
remove a forgotten cast to int
Diffstat (limited to '')
-rwxr-xr-xOpenSim/Region/Framework/Scenes/SimStatsReporter.cs2
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