mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 22:51:28 +02:00
more assert macro trickery
This commit is contained in:
parent
e6e40e7b48
commit
c75dc29c03
1 changed files with 3 additions and 1 deletions
|
@ -119,7 +119,9 @@ static std::vector<int> buildJointIndexMap(const AnimSkeleton& dstSkeleton, cons
|
||||||
*bad_ptr = 0x0badf00d; \
|
*bad_ptr = 0x0badf00d; \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
#endif // #ifdef USE_CUSTOM_ASSERT
|
#else
|
||||||
|
#define ASSERT assert
|
||||||
|
#endif
|
||||||
|
|
||||||
void AnimClip::copyFromNetworkAnim() {
|
void AnimClip::copyFromNetworkAnim() {
|
||||||
assert(_networkAnim && _networkAnim->isLoaded() && _skeleton);
|
assert(_networkAnim && _networkAnim->isLoaded() && _skeleton);
|
||||||
|
|
Loading…
Reference in a new issue