Fix building for Windows after 57cff46v (booleans unitialized)

This commit is contained in:
Dalai Felinto 2016-06-20 13:02:53 -03:00
parent 61b49de449
commit 72273b08cc
1 changed files with 2 additions and 2 deletions

View File

@ -542,8 +542,8 @@ static bool bm_decim_triangulate_begin(BMesh *bm, int *r_edges_tri_tot)
{
BMIter iter;
BMFace *f;
bool has_quad;
bool has_ngon;
bool has_quad = false;
bool has_ngon = false;
bool has_cut = false;
BLI_assert((bm->elem_index_dirty & BM_VERT) == 0);