Browse Source

Fix build: use ai_assert instead of assert.

Kim Kulling 9 years ago
parent
commit
f45aeca3f6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/Assimp.cpp

+ 1 - 1
code/Assimp.cpp

@@ -150,7 +150,7 @@ void ReportSceneNotFoundError()
     DefaultLogger::get()->error("Unable to find the Assimp::Importer for this aiScene. "
     DefaultLogger::get()->error("Unable to find the Assimp::Importer for this aiScene. "
         "The C-API does not accept scenes produced by the C++ API and vice versa");
         "The C-API does not accept scenes produced by the C++ API and vice versa");
 
 
-    assert(false);
+    ai_assert(false);
 }
 }
 
 
 // ------------------------------------------------------------------------------------------------
 // ------------------------------------------------------------------------------------------------