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:
authorChris Want <cwant@ualberta.ca>2004-03-15 00:00:51 +0300
committerChris Want <cwant@ualberta.ca>2004-03-15 00:00:51 +0300
commitdd3c9c0c466d74d20e42db6ec994dc0ddbb7ee9b (patch)
tree0213330438695db5f4da4efdc63479a950014b46 /source/blender/blenkernel/intern/subsurf.c
parenta91ef3f4e1a329c103be54a278752d65bd3529f0 (diff)
Removed the struct MFaceInt from DNA_mesh_types.h (by the recommendation
of zr). This struct was never written to file and the new 'int based' MFace can be used in it's place. Some removal of redundant code could perhaps be done now (I didn't do any though, just "s/MFaceInt/MFace/").
Diffstat (limited to 'source/blender/blenkernel/intern/subsurf.c')
-rw-r--r--source/blender/blenkernel/intern/subsurf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/subsurf.c b/source/blender/blenkernel/intern/subsurf.c
index f80b97a72ad..db0ab4bc45d 100644
--- a/source/blender/blenkernel/intern/subsurf.c
+++ b/source/blender/blenkernel/intern/subsurf.c
@@ -768,7 +768,7 @@ static DispListMesh *hypermesh_to_displistmesh(HyperMesh *hme, short flag) {
HyperEdge *e;
TFace *tfaces;
MFace *mfaces;
- MFaceInt *mf;
+ MFace *mf;
int i, j, handles=0;
/* hme->orig_me==NULL if we are working on an editmesh */