From 04f0075b6306aa0bb3a1c749d5e1788d56a5a923 Mon Sep 17 00:00:00 2001 From: Alexander Gessler Date: Mon, 12 May 2014 12:50:21 +0200 Subject: [PATCH] Change default extension for binary STL exports from stlb to stl --- code/Exporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Exporter.cpp b/code/Exporter.cpp index 7adb9d31d..a693f75e2 100644 --- a/code/Exporter.cpp +++ b/code/Exporter.cpp @@ -95,7 +95,7 @@ Exporter::ExportFormatEntry gExporters[] = Exporter::ExportFormatEntry( "stl", "Stereolithography", "stl" , &ExportSceneSTL, aiProcess_Triangulate | aiProcess_GenNormals | aiProcess_PreTransformVertices ), - Exporter::ExportFormatEntry( "stlb", "Stereolithography(binary)", "stlb" , &ExportSceneSTLBinary, + Exporter::ExportFormatEntry( "stlb", "Stereolithography (binary)", "stl" , &ExportSceneSTLBinary, aiProcess_Triangulate | aiProcess_GenNormals | aiProcess_PreTransformVertices ), #endif