* Fixed an overflow in the land manager

* Did some goofy math undoing in the Sim Stats Reporter
* More reduction to the amount of calls per second to UnManaged ODE code
* Added a significant amount of comments to ODE
This commit is contained in:
Teravus Ovares
2008-01-13 07:14:54 +00:00
parent fa83249db8
commit d9e4533202
4 changed files with 383 additions and 102 deletions

View File

@@ -111,8 +111,8 @@ namespace OpenSim.Region.Environment.Scenes
float physfps = (m_pfps/statsUpdatesEveryMS);
if (physfps > 500)
physfps = physfps - (physfps - 500);
//if (physfps > 600)
//physfps = physfps - (physfps - 600);
if (physfps < 0)
physfps = 0;