From 16025fa34bf8360fe7a886021bc0e6645651da73 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 6 Sep 2015 20:28:59 +0100 Subject: [PATCH] remove a forgotten cast to int --- OpenSim/Region/Framework/Scenes/SimStatsReporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs b/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs index b4beff993e..66cf14f133 100755 --- a/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs +++ b/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs @@ -357,7 +357,7 @@ namespace OpenSim.Region.Framework.Scenes float perframefactor = 1.0f / (float)reportedFPS; // fps considering the integration time - reportedFPS = (int)(reportedFPS * updateFactor); + reportedFPS = reportedFPS * updateFactor; // save the reported value so there is something available for llGetRegionFPS lastReportedSimFPS = reportedFPS;