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:
authorTon Roosendaal <ton@blender.org>2007-12-01 17:36:06 +0300
committerTon Roosendaal <ton@blender.org>2007-12-01 17:36:06 +0300
commit448a423288a08cdc2fafd13d5769dba5b60a72a6 (patch)
treea3dfcc8394eea7790457b7f1f54d045ec5a52a7e /source/blender/blenloader
parent5bf9517bd6b95cc00986d41f299c9a316a7c1bbe (diff)
Bugfix in library linking and subversions (#2)
Now reading files with many references to other files uses correct version patching.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 996d2deb3fc..6236af87479 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -8359,6 +8359,9 @@ static void read_libraries(FileData *basefd, ListBase *mainlist)
mainptr->curlib->filedata= fd;
mainptr->versionfile= fd->fileversion;
+
+ /* subversion */
+ read_file_version(fd, mainptr);
}
else mainptr->curlib->filedata= NULL;