From 4dcb3c9235458fd01b050a2a2f87967bbf3771a4 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Tue, 11 Jun 2019 21:55:21 +0200 Subject: [PATCH] Update ImporterRegistry.cpp fix case-sensiive folder bug. --- code/Common/ImporterRegistry.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/Common/ImporterRegistry.cpp b/code/Common/ImporterRegistry.cpp index 92f055850..abcaf9130 100644 --- a/code/Common/ImporterRegistry.cpp +++ b/code/Common/ImporterRegistry.cpp @@ -122,10 +122,10 @@ corresponding preprocessor flag to selectively disable formats. # include "BVH/BVHLoader.h" #endif #ifndef ASSIMP_BUILD_NO_IRRMESH_IMPORTER -# include "IRR/IRRMeshLoader.h" +# include "Irr/IRRMeshLoader.h" #endif #ifndef ASSIMP_BUILD_NO_IRR_IMPORTER -# include "IRR/IRRLoader.h" +# include "Irr/IRRLoader.h" #endif #ifndef ASSIMP_BUILD_NO_Q3D_IMPORTER # include "Q3D/Q3DLoader.h"