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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2006-07-07 01:51:54 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2006-07-07 01:51:54 +0400
commitb709a08abc01ee6763e537bb7d9a024e9110119f (patch)
tree46d3ee76ac7ba342306b9ca96b3341073d7d99e8 /source/blender/python/api2_2x/NMesh.h
parentec1c1615bc81b365e5b6265700462b243f3ec7b4 (diff)
Bugfix in NMesh:
- Setting hasFaceUV to false didn't work correct, missing braces in define.
Diffstat (limited to 'source/blender/python/api2_2x/NMesh.h')
-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;