oops some code got in ahead of time

0.9.1.0-post-fixes
UbitUmarov 2018-10-21 12:41:28 +01:00
parent 0986555765
commit 495b22470d
1 changed files with 6 additions and 2 deletions

View File

@ -352,9 +352,13 @@ namespace OpenSim.Region.PhysicsModule.BulletS
if (BSParam.UseSeparatePhysicsThread)
{
// The physics simulation should happen independently of the heartbeat loop
m_physicsThread = WorkManager.StartThread(
m_physicsThread
= WorkManager.StartThread(
BulletSPluginPhysicsThread,
string.Format("{0} ({1})", BulletEngineName, RegionName));
string.Format("{0} ({1})", BulletEngineName, RegionName),
ThreadPriority.Normal,
true,
true);
}
}