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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2016-01-31 01:29:59 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2016-01-31 01:30:16 +0300
commit24f95a1991d2a2de52244c5675ab2c026b1b31b2 (patch)
tree48c40f90b844eec30d7262f104d83376f1e30377 /source/blender/blenkernel
parent6451c072cef853cbdbd9db1b149463f959fb6d47 (diff)
Point Cache: fix typo in smoke_openvdb_read.
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/pointcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/pointcache.c b/source/blender/blenkernel/intern/pointcache.c
index 8d6edcec0c7..441483876fd 100644
--- a/source/blender/blenkernel/intern/pointcache.c
+++ b/source/blender/blenkernel/intern/pointcache.c
@@ -1107,7 +1107,7 @@ static int ptcache_smoke_openvdb_read(struct OpenVDBReader *reader, void *smoke_
OpenVDB_import_grid_fl(reader, "shadow", &sds->shadow, sds->res);
- const char *name = (!sds->wt) ? "density" : "density Low";
+ const char *name = (!sds->wt) ? "density" : "density low";
OpenVDB_import_grid_fl(reader, name, &dens, sds->res);
if (fluid_fields & SM_ACTIVE_HEAT) {