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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-10-15 18:56:31 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-10-15 18:56:31 +0400
commit17085e967ea38dd764a1b521b28f256941b1ce17 (patch)
tree2aa9088e377d0e2a211c06cd9e8d488e8c8df5bb /source/blender/collada
parentf631a8b5beb13f4d02c6eddc1bd6fdf15039b7ef (diff)
Fix COLLADA import after recent API cleanups by Campbell.
Diffstat (limited to 'source/blender/collada')
-rw-r--r--source/blender/collada/DocumentImporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/DocumentImporter.cpp b/source/blender/collada/DocumentImporter.cpp
index 25787e18b06..bc5653c8c45 100644
--- a/source/blender/collada/DocumentImporter.cpp
+++ b/source/blender/collada/DocumentImporter.cpp
@@ -807,7 +807,7 @@ public:
BLI_split_dirfile(filename, dir, NULL);
BLI_join_dirfile(full_path, dir, filepath.c_str());
- Image *ima = BKE_add_image_file(full_path, 0);
+ Image *ima = BKE_add_image_file(full_path);
if (!ima) {
fprintf(stderr, "Cannot create image. \n");
return true;