From fff19a1360fdc2fb3cd80924314086508cee643c Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Sun, 21 Oct 2012 09:57:25 +0000 Subject: [PATCH] Compatibility error: BLENDER_MINVERSION was set to 2.61, but that should be 2.62. This define means "the minimum version of Blender that can read the current .blend" In 2.62 there's compatibility code to read BMesh, not in 2.61. --- source/blender/blenkernel/BKE_blender.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/blender/blenkernel/BKE_blender.h b/source/blender/blenkernel/BKE_blender.h index cf67899dfb0..61b6f5b1cea 100644 --- a/source/blender/blenkernel/BKE_blender.h +++ b/source/blender/blenkernel/BKE_blender.h @@ -44,9 +44,8 @@ extern "C" { #define BLENDER_VERSION 264 #define BLENDER_SUBVERSION 4 -/* 262 was the last editmesh release but its has compatibility code for bmesh data, - * so set the minversion to 2.61 */ -#define BLENDER_MINVERSION 261 +/* 262 was the last editmesh release but it has compatibility code for bmesh data */ +#define BLENDER_MINVERSION 262 #define BLENDER_MINSUBVERSION 0 /* used by packaging tools */