Add dot only when the extension is not empty.
parent
dabaa7bdae
commit
4aaa807704
|
@ -153,7 +153,9 @@ int Assimp_Export(const char *const *params, unsigned int num) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// derive the final file name
|
// derive the final file name
|
||||||
|
if (!outext.empty()) {
|
||||||
out += "." + outext;
|
out += "." + outext;
|
||||||
|
}
|
||||||
|
|
||||||
// and call the export routine
|
// and call the export routine
|
||||||
if (!ExportModel(scene, import, out, e->id)) {
|
if (!ExportModel(scene, import, out, e->id)) {
|
||||||
|
|
Loading…
Reference in New Issue