Fix error message shown when exporting mesh with wrong extension.

This commit is contained in:
whitequark 2016-11-17 06:51:47 +00:00
parent 489ae66e96
commit c7277521f3

View File

@ -834,7 +834,7 @@ void SolveSpaceUI::ExportMeshTo(const std::string &filename) {
ExportMeshAsThreeJsTo(f, filename, m, e); ExportMeshAsThreeJsTo(f, filename, m, e);
} else { } else {
Error("Can't identify output file type from file extension of " Error("Can't identify output file type from file extension of "
"filename '%s'; try .stl, .obj, .js.", filename.c_str()); "filename '%s'; try .stl, .obj, .js, .html.", filename.c_str());
} }
fclose(f); fclose(f);