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/python/bmesh/bmesh_py_api.c')
-rw-r--r--source/blender/python/bmesh/bmesh_py_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_api.c b/source/blender/python/bmesh/bmesh_py_api.c
index 8ab5e7adea7..7f5b10e6759 100644
--- a/source/blender/python/bmesh/bmesh_py_api.c
+++ b/source/blender/python/bmesh/bmesh_py_api.c
@@ -148,9 +148,9 @@ static PyObject *bpy_bm_update_edit_mesh(PyObject *UNUSED(self), PyObject *args,
{
extern void EDBM_update_generic(
- BMEditMesh * em, const bool do_tessface, const bool is_destructive);
+ struct Mesh * me, const bool do_tessface, const bool is_destructive);
- EDBM_update_generic(me->edit_mesh, do_loop_triangles, is_destructive);
+ EDBM_update_generic(me, do_loop_triangles, is_destructive);
}
Py_RETURN_NONE;