Freestyle: use bool instead of int.

Patch contribution by flokkievids (Folkert de Vries).  Thanks!
This commit is contained in:
2014-06-24 22:44:53 +09:00
parent c5ccbacdaa
commit 252eaed483
25 changed files with 49 additions and 49 deletions

View File

@@ -86,7 +86,7 @@ static int FEdgeSmooth_init(BPy_FEdgeSmooth *self, PyObject *args, PyObject *kwd
}
self->py_fe.fe = self->fes;
self->py_fe.py_if1D.if1D = self->fes;
self->py_fe.py_if1D.borrowed = 0;
self->py_fe.py_if1D.borrowed = false;
return 0;
}