Просмотр исходного кода

Merge pull request #1643 from mesilliac/fix_gltf_exporter_define_name

Fix incorrect NO_GLTF_IMPORTER define name in glTFExporter.h
Kim Kulling 7 лет назад
Родитель
Сommit
144e325a4d
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      code/glTFExporter.h

+ 2 - 2
code/glTFExporter.h

@@ -45,7 +45,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef AI_GLTFEXPORTER_H_INC
 #define AI_GLTFEXPORTER_H_INC
 
-#ifndef ASSIMP_BUILD_NO_GLTF_IMPORTER
+#ifndef ASSIMP_BUILD_NO_GLTF_EXPORTER
 
 #include <assimp/types.h>
 #include <assimp/material.h>
@@ -113,6 +113,6 @@ namespace Assimp
 
 }
 
-#endif // ASSIMP_BUILD_NO_GLTF_IMPORTER
+#endif // ASSIMP_BUILD_NO_GLTF_EXPORTER
 
 #endif // AI_GLTFEXPORTER_H_INC