From 04a9c0e28a26d6d2f2f3b441f0cdaae3292c754e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 17 May 2013 07:10:40 +0000 Subject: [PATCH] bump mathutils callback slot size. --- source/blender/python/mathutils/mathutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/python/mathutils/mathutils.c b/source/blender/python/mathutils/mathutils.c index 57b00559a8a..0b0148f69b4 100644 --- a/source/blender/python/mathutils/mathutils.c +++ b/source/blender/python/mathutils/mathutils.c @@ -340,7 +340,7 @@ int mathutils_deepcopy_args_check(PyObject *args) /* Mathutils Callbacks */ /* for mathutils internal use only, eventually should re-alloc but to start with we only have a few users */ -#define MATHUTILS_TOT_CB 15 +#define MATHUTILS_TOT_CB 16 static Mathutils_Callback *mathutils_callbacks[MATHUTILS_TOT_CB] = {NULL}; unsigned char Mathutils_RegisterCallback(Mathutils_Callback *cb)