From b709a08abc01ee6763e537bb7d9a024e9110119f Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 6 Jul 2006 21:51:54 +0000 Subject: Bugfix in NMesh: - Setting hasFaceUV to false didn't work correct, missing braces in define. --- source/blender/python/api2_2x/NMesh.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/python/api2_2x/NMesh.h') diff --git a/source/blender/python/api2_2x/NMesh.h b/source/blender/python/api2_2x/NMesh.h index 8d944dfdffe..ccc58f15ef9 100644 --- a/source/blender/python/api2_2x/NMesh.h +++ b/source/blender/python/api2_2x/NMesh.h @@ -127,9 +127,9 @@ typedef struct { short mode; /* see the EXPP_NMESH_* defines in the beginning of this file */ char flags; -#define NMESH_HASMCOL 1<<0 -#define NMESH_HASVERTUV 1<<1 -#define NMESH_HASFACEUV 1<<2 +#define NMESH_HASMCOL (1<<0) +#define NMESH_HASVERTUV (1<<1) +#define NMESH_HASFACEUV (1<<2) } BPy_NMesh; -- cgit v1.2.3