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:
Diffstat (limited to 'source/blender/makesdna/DNA_mesh_types.h')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index b39ccb2fc54..3b69656464e 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -53,11 +53,8 @@ struct bDeformGroup;
* the other hand, it also interferes with sys/types.h, so we get rid
* of it asap. */
-#define ushort unsigned short
-
typedef struct MFace {
-/* unsigned short v1, v2, v3, v4; */
- ushort v1, v2, v3, v4;
+ unsigned int v1, v2, v3, v4;
char puno, mat_nr;
char edcode, flag;
} MFace;