RNA: use bool for boolean RNA types
We were using int's for bool arguments in BKE, just to avoid having wrapper functions.
This commit is contained in:
@@ -43,7 +43,7 @@
|
||||
#include "rna_internal.h" /* own include */
|
||||
|
||||
#ifdef RNA_RUNTIME
|
||||
static void rna_Curve_transform(Curve *cu, float *mat, int shape_keys)
|
||||
static void rna_Curve_transform(Curve *cu, float *mat, bool shape_keys)
|
||||
{
|
||||
BKE_curve_transform(cu, (float (*)[4])mat, shape_keys, true);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user