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:
authorSebastián Barschkis <sebbas@sebbas.org>2020-07-21 15:38:06 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-07-21 15:38:26 +0300
commit3fe5c0e5df8191053148b4605c476b555795ee16 (patch)
treeb89887111a471117eff6b5bb6b989d5d3f3a5284 /source/blender/blenkernel/intern/fluid.c
parent5904953d221868ca12b361f7b8f81395440bfb87 (diff)
Fluid: Cleanup unused variables
Diffstat (limited to 'source/blender/blenkernel/intern/fluid.c')
-rw-r--r--source/blender/blenkernel/intern/fluid.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/fluid.c b/source/blender/blenkernel/intern/fluid.c
index 5086145c0ff..286da4977e3 100644
--- a/source/blender/blenkernel/intern/fluid.c
+++ b/source/blender/blenkernel/intern/fluid.c
@@ -3817,9 +3817,8 @@ static void BKE_fluid_modifier_processDomain(FluidModifierData *fmd,
floater = fds->particle_type & FLUID_DOMAIN_PARTICLE_FOAM;
bool with_resumable_cache = fds->flags & FLUID_DOMAIN_USE_RESUMABLE_CACHE;
- bool with_script, with_adaptive, with_noise, with_mesh, with_particles, with_guide;
+ bool with_script, with_noise, with_mesh, with_particles, with_guide;
with_script = fds->flags & FLUID_DOMAIN_EXPORT_MANTA_SCRIPT;
- with_adaptive = fds->flags & FLUID_DOMAIN_USE_ADAPTIVE_DOMAIN;
with_noise = fds->flags & FLUID_DOMAIN_USE_NOISE;
with_mesh = fds->flags & FLUID_DOMAIN_USE_MESH;
with_guide = fds->flags & FLUID_DOMAIN_USE_GUIDE;