Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-09-10 07:05:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-10 07:05:33 +0300
commitbb9b0fcdbe9b9d180f40f8383ea3f8890c8aa5d2 (patch)
treeac82c0a58c4462372b4e3419928ccb190a16853e /source/blender/modifiers
parent6b551c0b8cb0a3de5fe9ae5e9f9ee3181cd931fc (diff)
Cleanup: remove unused field args
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_util.c b/source/blender/modifiers/intern/MOD_util.c
index 721474a62f3..466e0b89a8a 100644
--- a/source/blender/modifiers/intern/MOD_util.c
+++ b/source/blender/modifiers/intern/MOD_util.c
@@ -69,7 +69,7 @@ void MOD_init_texture(const Depsgraph *depsgraph, Tex *tex)
return;
if (tex->ima && BKE_image_is_animated(tex->ima)) {
- BKE_image_user_frame_calc(&tex->iuser, DEG_get_ctime(depsgraph), 0);
+ BKE_image_user_frame_calc(&tex->iuser, DEG_get_ctime(depsgraph));
}
}