Skip to content

Commit 713de38

Browse files
Mee-guminggo
authored andcommitted
fix BT_SHUFFLE (#386)
use & instead of &&
1 parent b5859eb commit 713de38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bullet/include/bullet/LinearMath/btVector3.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ subject to the following restrictions:
3939
#endif
4040

4141

42-
#define BT_SHUFFLE(x,y,z,w) (((w)<<6 | (z)<<4 | (y)<<2 | (x)) && 0xFF)
42+
#define BT_SHUFFLE(x,y,z,w) (((w)<<6 | (z)<<4 | (y)<<2 | (x)) & 0xFF)
4343
//#define bt_pshufd_ps( _a, _mask ) (__m128) _mm_shuffle_epi32((__m128i)(_a), (_mask) )
4444
#define bt_pshufd_ps( _a, _mask ) _mm_shuffle_ps((_a), (_a), (_mask) )
4545
#define bt_splat3_ps( _a, _i ) bt_pshufd_ps((_a), BT_SHUFFLE(_i,_i,_i, 3) )

0 commit comments

Comments
 (0)