more Linux fixes.

master
Beq 2024-10-24 22:03:30 +01:00
parent aa00252913
commit a0e40cc7e4
2 changed files with 3 additions and 1 deletions

View File

@ -25,6 +25,7 @@
*/
#include <deque>
#include <boost/algorithm/string.hpp>
#include "fsposeranimator.h"
#include "llcharacter.h"
#include "llagent.h"
@ -59,7 +60,7 @@ void FSPoserAnimator::setPosingAvatarJoint(LLVOAvatar *avatar, FSPoserJoint join
return;
bool arePosing = isPosingAvatarJoint(avatar, joint);
if (arePosing && shouldPose || !arePosing && !shouldPose) // could !XOR, but this is readable
if ( (arePosing && shouldPose) || (!arePosing && !shouldPose) ) // could !XOR, but this is readable
return;
FSPosingMotion* posingMotion = getPosingMotion(avatar);

View File

@ -24,6 +24,7 @@
* $/LicenseInfo$
*/
#include <deque>
#include "fsposingmotion.h"
#include "llcharacter.h"