minor: fix indenting from previous commit b08ab1e

0.8-extended
Justin Clark-Casey (justincc) 2014-09-03 23:37:20 +01:00 committed by Justin Clark-Casey
parent 78734dd723
commit 2f0dfb055c
1 changed files with 7 additions and 7 deletions

View File

@ -287,13 +287,13 @@ public sealed class BSScene : PhysicsScene, IPhysicsParameters
if (BSParam.UseSeparatePhysicsThread) if (BSParam.UseSeparatePhysicsThread)
{ {
// The physics simulation should happen independently of the heartbeat loop // The physics simulation should happen independently of the heartbeat loop
m_physicsThread m_physicsThread
= Watchdog.StartThread( = Watchdog.StartThread(
BulletSPluginPhysicsThread, BulletSPluginPhysicsThread,
string.Format("{0} ({1})", BulletEngineName, RegionName), string.Format("{0} ({1})", BulletEngineName, RegionName),
ThreadPriority.Normal, ThreadPriority.Normal,
true, true,
false); false);
} }
} }