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

Some fixes from mingw.

This commit is contained in:
Darryl Pogue
2011-10-30 13:36:31 -07:00
parent 526bed2f43
commit a743da47fb
4 changed files with 20 additions and 10 deletions

View File

@ -572,7 +572,8 @@ void plLineFollowMod::ISetTargetTransform(int iTarg, const hsMatrix44& unclTgtXf
xlate.Reset();
xlate.SetTranslate(&oldPos);
w2l = w2l * xlate;
xlate.SetTranslate(&-pos);
hsPoint3 neg = -pos;
xlate.SetTranslate(&neg);
w2l = w2l * xlate;
ci->SetTransform(l2w, w2l);