From 7337474b6ccf850919377e4e4072d34397f81175 Mon Sep 17 00:00:00 2001 From: Teybeo Date: Mon, 11 Dec 2017 16:26:00 +0100 Subject: [PATCH] Fix 3MF define typo --- code/Exporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Exporter.cpp b/code/Exporter.cpp index 3fc31a722..0281e4e99 100644 --- a/code/Exporter.cpp +++ b/code/Exporter.cpp @@ -165,7 +165,7 @@ Exporter::ExportFormatEntry gExporters[] = Exporter::ExportFormatEntry( "x3d", "Extensible 3D", "x3d" , &ExportSceneX3D, 0 ), #endif -#ifndef ASSIMP_BUILD_NO3MF_EXPORTER +#ifndef ASSIMP_BUILD_NO_3MF_EXPORTER Exporter::ExportFormatEntry( "3mf", "The 3MF-File-Format", "3mf", &ExportScene3MF, 0 ) #endif };