Answers for "cocos Argument value 10880 is outside the valid range [0, 255]"

0

cocos Argument value 10880 is outside the valid range [0, 255]

In btVector3.h, just replace

#define BT_SHUFFLE(x,y,z,w) ((w)<<6 | (z)<<4 | (y)<<2 | (x))

With new code:

#define BT_SHUFFLE(x, y, z, w) (((w) << 6 | (z) << 4 | (y) << 2 | (x)) & 0xff)
Posted by: Guest on October-20-2020

Code answers related to "cocos Argument value 10880 is outside the valid range [0, 255]"

Browse Popular Code Answers by Language