Subversion bump for render tiles, motion tracking fallback option and collisions.

This commit is contained in:
Sergey Sharybin
2012-11-05 08:41:38 +00:00
parent b6bb65cd21
commit c557f6f0b6
2 changed files with 11 additions and 12 deletions

View File

@@ -42,7 +42,7 @@ extern "C" {
* and keep comment above the defines. * and keep comment above the defines.
* Use STRINGIFY() rather than defining with quotes */ * Use STRINGIFY() rather than defining with quotes */
#define BLENDER_VERSION 264 #define BLENDER_VERSION 264
#define BLENDER_SUBVERSION 6 #define BLENDER_SUBVERSION 7
/* 262 was the last editmesh release but it has compatibility code for bmesh data */ /* 262 was the last editmesh release but it has compatibility code for bmesh data */
#define BLENDER_MINVERSION 262 #define BLENDER_MINVERSION 262

View File

@@ -8299,7 +8299,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
} }
} }
{ if (main->versionfile < 264 || (main->versionfile == 264 && main->subversionfile < 7)) {
/* convert tiles size from resolution and number of tiles */ /* convert tiles size from resolution and number of tiles */
{ {
Scene *scene; Scene *scene;
@@ -8314,8 +8314,8 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
} }
} }
} }
}
/* collision masks */
{ {
Object *ob; Object *ob;
for (ob = main->object.first; ob; ob = ob->id.next) { for (ob = main->object.first; ob; ob = ob->id.next) {
@@ -8326,7 +8326,6 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
} }
} }
{
/* fallbck resection method settings */ /* fallbck resection method settings */
{ {
MovieClip *clip; MovieClip *clip;