Add dot only when the extension is not empty.

This commit is contained in:
Kim Kulling
2022-08-06 18:37:12 +02:00
parent dabaa7bdae
commit 4aaa807704

View File

@@ -153,7 +153,9 @@ int Assimp_Export(const char *const *params, unsigned int num) {
}
// derive the final file name
out += "." + outext;
if (!outext.empty()) {
out += "." + outext;
}
// and call the export routine
if (!ExportModel(scene, import, out, e->id)) {