[Bf-blender-cvs] [3e25f70dddb] master: Fix compile error in lite build after recent commit

Hans Goudey noreply at git.blender.org
Wed Oct 14 14:40:08 CEST 2020


Commit: 3e25f70dddb1741cb80eb51a4de13d4fb93b1ee0
Author: Hans Goudey
Date:   Wed Oct 14 07:39:59 2020 -0500
Branches: master
https://developer.blender.org/rB3e25f70dddb1741cb80eb51a4de13d4fb93b1ee0

Fix compile error in lite build after recent commit

Mistake in my own commit rBd3b59d1358.

===================================================================

M	source/blender/blenkernel/intern/fluid.c

===================================================================

diff --git a/source/blender/blenkernel/intern/fluid.c b/source/blender/blenkernel/intern/fluid.c
index 8b71bb2c683..79f99df8e45 100644
--- a/source/blender/blenkernel/intern/fluid.c
+++ b/source/blender/blenkernel/intern/fluid.c
@@ -4864,12 +4864,12 @@ void BKE_fluid_modifier_create_type_data(struct FluidModifierData *fmd)
 
     /* Turn off incompatible options. */
 #ifndef WITH_OPENVDB
-    fmd->domain.cache_data_format = FLUID_DOMAIN_FILE_UNI;
-    fmd->domain.cache_particle_format = FLUID_DOMAIN_FILE_UNI;
-    fmd->domain.cache_noise_format = FLUID_DOMAIN_FILE_UNI;
+    fmd->domain->cache_data_format = FLUID_DOMAIN_FILE_UNI;
+    fmd->domain->cache_particle_format = FLUID_DOMAIN_FILE_UNI;
+    fmd->domain->cache_noise_format = FLUID_DOMAIN_FILE_UNI;
 #endif
 #ifndef WITH_OPENVDB_BLOSC
-    fmd->domain.openvdb_compression = VDB_COMPRESSION_ZIP;
+    fmd->domain->openvdb_compression = VDB_COMPRESSION_ZIP;
 #endif
 
     fmd->domain->effector_weights = BKE_effector_add_weights(NULL);



More information about the Bf-blender-cvs mailing list