Browse Source

Fix some errors in plAvatar.

Darryl Pogue 13 years ago
parent
commit
f33589936c
  1. 6
      Sources/Plasma/PubUtilLib/plAvatar/plAGAnimInstance.cpp
  2. 2
      Sources/Plasma/PubUtilLib/plAvatar/plAnimStage.cpp

6
Sources/Plasma/PubUtilLib/plAvatar/plAGAnimInstance.cpp

@ -458,9 +458,9 @@ hsScalar plAGAnimInstance::ICalcFade(hsBool &fade, hsScalar curVal, hsScalar goa
hsScalar newVal;
hsScalar curStep = rate * elapsed;
if(rate > 0) {
newVal = __min(goal, curVal + curStep);
newVal = std::min(goal, curVal + curStep);
} else {
newVal = __max(goal, curVal + curStep);
newVal = std::max(goal, curVal + curStep);
}
if(newVal == goal)
@ -593,7 +593,7 @@ void DumpAGAllocs()
agAlloc * al = (*i).second;
delete al;
i = gAGAllocs.erase(i);
gAGAllocs.erase(i++);
}
hsStatusMessage("FINISHED DUMPING AG ALLOCATIONS *********************************************");
}

2
Sources/Plasma/PubUtilLib/plAvatar/plAnimStage.cpp

@ -51,7 +51,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plAGAnimInstance.h"
#include "plMatrixChannel.h"
#include "plAvBrainGeneric.h"
#include "plMultiStageBehMod.h"
#include "plMultistageBehMod.h"
// global
#include "hsUtils.h"

Loading…
Cancel
Save