Browse Source

ai_assert: split 2 checks in one macro to 2 separate ai_assert tests.

Kim Kulling 9 years ago
parent
commit
a1bd83d797
1 changed files with 4 additions and 3 deletions
  1. 4 3
      code/SceneCombiner.cpp

+ 4 - 3
code/SceneCombiner.cpp

@@ -1128,10 +1128,11 @@ void SceneCombiner::Copy  (aiTexture** _dest, const aiTexture* src)
 }
 }
 
 
 // ------------------------------------------------------------------------------------------------
 // ------------------------------------------------------------------------------------------------
-void SceneCombiner::Copy     (aiAnimation** _dest, const aiAnimation* src)
+void SceneCombiner::Copy( aiAnimation** _dest, const aiAnimation* src )
 {
 {
-    ai_assert(NULL != _dest && NULL != src);
-
+    ai_assert( NULL != _dest );
+    ai_assert( NULL != src );
+    
     aiAnimation* dest = *_dest = new aiAnimation();
     aiAnimation* dest = *_dest = new aiAnimation();
 
 
     // get a flat copy
     // get a flat copy