Fixed log formatting in DefaultLogger.cpp to work with AssimpView.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@107 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
@@ -299,7 +299,7 @@ aiReturn Importer::RegisterLoader(BaseImporter* pImp)
|
||||
pImp->GetExtensionList(st);
|
||||
|
||||
#ifdef _DEBUG
|
||||
const char* sz = ::strtok(st.c_str(),";");
|
||||
const char* sz = ::strtok(const_cast<char*>(st.c_str()),";");
|
||||
while (sz)
|
||||
{
|
||||
if (IsExtensionSupported(std::string(sz)))
|
||||
|
||||
Reference in New Issue
Block a user