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:
authorCampbell Barton <ideasman42@gmail.com>2010-04-21 01:38:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-21 01:38:55 +0400
commit24eedb2175896dd5d7e145486f3f3c6455511fca (patch)
treeea516ee8892908cd45e5276d82425ce93c016d75 /source/blender/blenloader
parent37542017209bf831235fb1645d31b0275642da87 (diff)
vertex group option for lattice, needed for applying a lattice to a beard/moustache without moving the roots about.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 96b09f17d5c..a5349a90c3a 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -12204,9 +12204,10 @@ static void read_libraries(FileData *basefd, ListBase *mainlist)
if(G.rt==-666) {
while(fd==NULL) {
char newlib_path[240] = { 0 };
- printf("Missing library: '%s', '%s'\n", mainptr->name, G.sce);
- printf(" abs: %s\n", mainptr->curlib->filename);
- printf(" rel: %s\n", mainptr->curlib->name);
+ printf("Missing library...'\n");
+ printf(" current file: %s\n", G.sce);
+ printf(" absolute lib: %s\n", mainptr->curlib->filename);
+ printf(" relative lib: %s\n", mainptr->curlib->name);
printf(" enter a new path:\n");
scanf("%s", newlib_path);
@@ -12217,7 +12218,7 @@ static void read_libraries(FileData *basefd, ListBase *mainlist)
fd= blo_openblenderfile(mainptr->curlib->filename, basefd->reports);
if(fd) {
- printf("found: '%s', party on macuno!\n");
+ printf("found: '%s', party on macuno!\n", mainptr->curlib->filename);
}
}
}