From 3d79472172c9e4bacbfdb0a54fb2b034bc552247 Mon Sep 17 00:00:00 2001 From: kimkulling Date: Thu, 26 Apr 2018 14:36:59 +0200 Subject: [PATCH] fix the build. --- code/BaseImporter.cpp | 2 +- code/DefaultIOSystem.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/BaseImporter.cpp b/code/BaseImporter.cpp index fa9f70603..78979d078 100644 --- a/code/BaseImporter.cpp +++ b/code/BaseImporter.cpp @@ -595,7 +595,7 @@ void BatchLoader::LoadAll() if (!DefaultLogger::isNullLogger()) { ASSIMP_LOG_INFO("%%% BEGIN EXTERNAL FILE %%%"); - ASSIMP_LOG_INFO("File: ", (*it).file); + ASSIMP_LOG_INFO_F("File: ", (*it).file); } m_data->pImporter->ReadFile((*it).file,pp); (*it).scene = m_data->pImporter->GetOrphanedScene(); diff --git a/code/DefaultIOSystem.cpp b/code/DefaultIOSystem.cpp index ec0de6e3a..3afaf69e0 100644 --- a/code/DefaultIOSystem.cpp +++ b/code/DefaultIOSystem.cpp @@ -189,7 +189,7 @@ inline static void MakeAbsolutePath (const char* in, char* _out) if(!ret) { // preserve the input path, maybe someone else is able to fix // the path before it is accessed (e.g. our file system filter) - ASSIMP_LOG_WARN("Invalid path: ", std::string(in)); + ASSIMP_LOG_WARN_F("Invalid path: ", std::string(in)); strcpy(_out,in); } #endif