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:
-rw-r--r--source/blender/python/api2_2x/NMesh.h6
1 files changed, 3 insertions, 3 deletions
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;