Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2012-09-19 23:28:29 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2012-09-19 23:28:29 +0400
commitf3d261d7956e0b18f2939707f6a21dadc06474f2 (patch)
treedee1022db8f63d43d5be5e63b0f23f39df0799b0 /source/blender/collada/collada.cpp
parentb25bea036fd8a716c9e209c97e7f27fb99c5f042 (diff)
Collada(exporter): Added error message when export file can not be created for whichever reason
Diffstat (limited to 'source/blender/collada/collada.cpp')
-rw-r--r--source/blender/collada/collada.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/collada/collada.cpp b/source/blender/collada/collada.cpp
index f7e0f75ec5c..fbb18887d1b 100644
--- a/source/blender/collada/collada.cpp
+++ b/source/blender/collada/collada.cpp
@@ -76,6 +76,7 @@ int collada_export(Scene *sce,
if (!BLI_exists(filepath)) {
BLI_make_existing_file(filepath); /* makes the dir if its not there */
if (BLI_file_touch(filepath) == 0) {
+ fprintf(stdout, "Collada export: Can not create: %s\n", filepath);
return 0;
}
}