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_smooth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/modifiers/intern/MOD_smooth.c') diff --git a/source/blender/modifiers/intern/MOD_smooth.c b/source/blender/modifiers/intern/MOD_smooth.c index e44ead73ced..2d5084abac3 100644 --- a/source/blender/modifiers/intern/MOD_smooth.c +++ b/source/blender/modifiers/intern/MOD_smooth.c @@ -61,7 +61,7 @@ static void initData(ModifierData *md) smd->defgrp_name[0] = '\0'; } -static bool isDisabled(ModifierData *md, int UNUSED(useRenderParams)) +static bool isDisabled(const struct Scene *UNUSED(scene), ModifierData *md, int UNUSED(useRenderParams)) { SmoothModifierData *smd = (SmoothModifierData *) md; short flag; -- cgit v1.2.3