From 6427141f7bb69b21272b8a97bd5d889ffbac740e Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 21 Jun 2018 17:54:12 +0200 Subject: Modifiers: Stop using md->scene in isDisabled() callback This is first commit in series of changes to get rid of md->scene. --- source/blender/modifiers/intern/MOD_boolean.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/modifiers/intern/MOD_boolean.c') diff --git a/source/blender/modifiers/intern/MOD_boolean.c b/source/blender/modifiers/intern/MOD_boolean.c index f7b16431c48..6cea7b8fece 100644 --- a/source/blender/modifiers/intern/MOD_boolean.c +++ b/source/blender/modifiers/intern/MOD_boolean.c @@ -76,7 +76,7 @@ static void initData(ModifierData *md) bmd->double_threshold = 1e-6f; } -static bool isDisabled(ModifierData *md, int UNUSED(useRenderParams)) +static bool isDisabled(const struct Scene *UNUSED(scene), ModifierData *md, int UNUSED(useRenderParams)) { BooleanModifierData *bmd = (BooleanModifierData *) md; -- cgit v1.2.3