summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterpathfindingcharacters.cpp
diff options
context:
space:
mode:
authorAnsariel <ansariel.hiller@phoenixviewer.com>2024-05-30 13:11:50 +0200
committerAnsariel <ansariel.hiller@phoenixviewer.com>2024-05-30 13:11:50 +0200
commitc082f6f67a6dcd3437d1f2413932fef8cdf7de07 (patch)
treecdbf77c91e96bc9d02b74c0f74b4bea8a641be70 /indra/newview/llfloaterpathfindingcharacters.cpp
parent7e645bd42d6e9cf403c4b4b7d7eb070c5bb1ebf3 (diff)
Re-enable compiler warning C4800 (performance warning)
Diffstat (limited to 'indra/newview/llfloaterpathfindingcharacters.cpp')
-rw-r--r--indra/newview/llfloaterpathfindingcharacters.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterpathfindingcharacters.cpp b/indra/newview/llfloaterpathfindingcharacters.cpp
index e0a234e3a2..848672b1fc 100644
--- a/indra/newview/llfloaterpathfindingcharacters.cpp
+++ b/indra/newview/llfloaterpathfindingcharacters.cpp
@@ -284,7 +284,7 @@ void LLFloaterPathfindingCharacters::showCapsule() const
if (LLPathingLib::getInstance() != NULL)
{
LLPathingLib::getInstance()->createPhysicsCapsuleRep(character->getLength(), character->getRadius(),
- character->isHorizontal(), character->getUUID());
+ (BOOL)character->isHorizontal(), character->getUUID());
}
}