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:
authorJoshua Leung <aligorith@gmail.com>2010-01-27 14:58:04 +0300
committerJoshua Leung <aligorith@gmail.com>2010-01-27 14:58:04 +0300
commita22eb04b19e65c957aca97a378d4122b24e4681e (patch)
treeffd2c2292310437545850bea5d52016efaec98ff /source/blender/blenloader
parent22f01f4761bb3918ff0bc8162944493a2ac18016 (diff)
Bumped subversion for readfile patch (Anim Editors View2D stuff)
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index c69104f1f74..aab8f9f2b1b 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -10570,8 +10570,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
}
}
- /* put 2.50 compatibility code here until next subversion bump */
- {
+ if (main->versionfile < 250 || (main->versionfile == 250 && main->subversionfile < 14)) {
/* fix for bad View2D extents for Animation Editors */
bScreen *screen;
ScrArea *sa;
@@ -10600,6 +10599,12 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
}
}
}
+
+
+ /* put 2.50 compatibility code here until next subversion bump */
+ //{
+
+ //}
/* WATCH IT!!!: pointers from libdata have not been converted yet here! */
/* WATCH IT 2!: Userdef struct init has to be in editors/interface/resources.c! */