- remove redundant line in makesdna pointed out by 'troubled' in IRC

- comment remove unused mesh edge flag.
This commit is contained in:
Campbell Barton
2011-12-01 17:51:01 +00:00
parent 45de380771
commit 9b931aa0db
2 changed files with 2 additions and 3 deletions

View File

@@ -200,8 +200,8 @@ typedef struct MRecast{
/* reserve 16 for ME_HIDE */
#define ME_EDGERENDER (1<<5)
#define ME_LOOSEEDGE (1<<7)
#define ME_SEAM_LAST (1<<8)
#define ME_SHARP (1<<9)
/* #define ME_SEAM_LAST (1<<8) */ /* UNUSED */
#define ME_SHARP (1<<9) /* only reason this flag remains a 'short' */
/* puno = vertexnormal (mface) */
/* render assumes flips to be ordered like this */

View File

@@ -804,7 +804,6 @@ static int elem_strcmp(const char *name, const char *oname)
if(name[a]==0) break;
a++;
}
if(name[a] != oname[a]) return 1;
return 0;
}