minor: fix indenting from previous commit b08ab1e

bullet-2.82^2
Justin Clark-Casey (justincc) 2014-09-03 23:37:20 +01:00
parent b08ab1e375
commit 29400538b7
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);
} }
} }