diff options
author | Lars Næsbye Christensen <lars@naesbye.dk> | 2024-02-09 23:16:24 +0100 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-12 23:17:22 +0200 |
commit | 5666681f85bc179f5abe3bbcbd87d294031549be (patch) | |
tree | 7a1a8a4649334e84d1d8eea903d6f647b0972299 /indra/llmath/llvolume.cpp | |
parent | 2b31dad40026d8078ea30d0da0656a4078d0f5b2 (diff) |
llmath: BOOL (int) to real bool
Diffstat (limited to 'indra/llmath/llvolume.cpp')
-rw-r--r-- | indra/llmath/llvolume.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp index 6d36daa92a..838eb9c653 100644 --- a/indra/llmath/llvolume.cpp +++ b/indra/llmath/llvolume.cpp @@ -4789,10 +4789,10 @@ LLVolumeFace::LLVolumeFace() : mJustWeights(NULL), mJointIndices(NULL), #endif - mWeightsScrubbed(FALSE), + mWeightsScrubbed(false), mOctree(NULL), mOctreeTriangles(NULL), - mOptimized(FALSE) + mOptimized(false) { mExtents = (LLVector4a*) ll_aligned_malloc_16(sizeof(LLVector4a)*3); mExtents[0].splat(-0.5f); |