- Fix for commit 43551 which caused a linking error in blenderplayer.

- Minor clean up for commit 43551.
This commit is contained in:
Andrew Hale 2012-01-20 05:11:42 +00:00
parent fe71f40f88
commit 8817aaef3e
2 changed files with 3 additions and 3 deletions

@ -697,7 +697,6 @@ static void mesh_add_faces(Mesh *mesh, int len)
static void mesh_remove_verts(Mesh *mesh, int len)
{
CustomData vdata;
int totvert;
if(len == 0)
@ -712,7 +711,6 @@ static void mesh_remove_verts(Mesh *mesh, int len)
static void mesh_remove_edges(Mesh *mesh, int len)
{
CustomData edata;
int totedge;
if(len == 0)
@ -726,7 +724,6 @@ static void mesh_remove_edges(Mesh *mesh, int len)
static void mesh_remove_faces(Mesh *mesh, int len)
{
CustomData fdata;
int totface;
if(len == 0)

@ -297,6 +297,9 @@ void ED_mesh_update(struct Mesh *mesh, struct bContext *C){}
void ED_mesh_vertices_add(struct Mesh *mesh, struct ReportList *reports, int count){}
void ED_mesh_edges_add(struct Mesh *mesh, struct ReportList *reports, int count){}
void ED_mesh_faces_add(struct Mesh *mesh, struct ReportList *reports, int count){}
void ED_mesh_vertices_remove(struct Mesh *mesh, struct ReportList *reports, int count){}
void ED_mesh_edges_remove(struct Mesh *mesh, struct ReportList *reports, int count){}
void ED_mesh_faces_remove(struct Mesh *mesh, struct ReportList *reports, int count){}
void ED_mesh_material_link(struct Mesh *mesh, struct Material *ma){}
int ED_mesh_color_add(struct bContext *C, struct Scene *scene, struct Object *ob, struct Mesh *me){return 0;}
int ED_mesh_uv_texture_add(struct bContext *C, struct Mesh *me){return 0;}