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>2013-05-07 20:35:37 +0400
committerTon Roosendaal <ton@blender.org>2013-05-07 20:35:37 +0400
commitaa959b4e7d6d44df35c1efc990e5e4bd0c541e1d (patch)
tree4563a68bc7fcca88a8251f4006a5ea60655c77f9
parenta0800cb8b3546fb103330ef0db02664adc4f5168 (diff)
Putting undefined versioning to only older than 2.67.
-rw-r--r--source/blender/blenloader/intern/readfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index f0dfd0aa84e..5e01b03cd64 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -9346,7 +9346,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
}
/* default values in Freestyle settings */
- {
+ if (main->versionfile < 267) {
Scene *sce;
SceneRenderLayer *srl;
FreestyleLineStyle *linestyle;
@@ -9404,7 +9404,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
}
}
- {
+ if (main->versionfile < 267) {
/* Initialize the active_viewer_key for compositing */
bScreen *screen;
Scene *scene;