minor cleanup to mirror code
- MirrTopoPair.hash was 'long' when only needed to be 'int' - use 'intptr_t' rather than 'long' when the value is cast back to a pointer.
This commit is contained in:
@@ -87,8 +87,8 @@ struct rcti;
|
||||
|
||||
/* meshtools.c */
|
||||
|
||||
intptr_t mesh_octree_table(struct Object *ob, struct EditMesh *em, float *co, char mode);
|
||||
long mesh_mirrtopo_table(struct Object *ob, char mode);
|
||||
intptr_t mesh_octree_table(struct Object *ob, struct EditMesh *em, float *co, char mode);
|
||||
int mesh_mirrtopo_table(struct Object *ob, char mode);
|
||||
|
||||
struct EditVert *editmesh_get_x_mirror_vert(struct Object *ob, struct EditMesh *em, struct EditVert *eve, float *co, int index);
|
||||
int mesh_get_x_mirror_vert(struct Object *ob, int index);
|
||||
|
||||
Reference in New Issue
Block a user