1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-20 12:19:10 +00:00

Fix edit error in plPXPhysical::ISetTransformGlobal, mismatched braces

This commit is contained in:
rarified
2020-04-13 09:07:23 -06:00
parent c99bf23af4
commit b187b8fc59

View File

@ -859,9 +859,8 @@ void plPXPhysical::ISetTransformGlobal(const hsMatrix44& l2w)
// are also kinematic but not kPhysAnim, therefore, this would break on PhysX // are also kinematic but not kPhysAnim, therefore, this would break on PhysX
// SDKs (yes, I'm looking at you, 2.6.4) that actually obey the ***GlobalPose // SDKs (yes, I'm looking at you, 2.6.4) that actually obey the ***GlobalPose
// rules set forth in the SDK documentation. // rules set forth in the SDK documentation.
if(fActor->readBodyFlag(NX_BF_KINEMATIC)) if (fActor->readBodyFlag(NX_BF_KINEMATIC))
fActor->moveGlobalPose(mat); fActor->moveGlobalPose(mat);
}
else else
fActor->setGlobalPose(mat); fActor->setGlobalPose(mat);
} }