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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-09-20 13:33:45 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-09-21 14:56:22 +0300
commitcfb7565cd5c19e80089d82d7034393342a24f696 (patch)
tree78fa4a4a73e5b61e6b7cd5626967a836e2ed9628 /source/blender/blenloader
parent91a5b665b0b47a20e65434dd40740a80b39a0b9c (diff)
Cleanup: convert smoke modifier from DerivedMesh to Mesh.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 04896eacb43..0083adb4cc9 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -5198,7 +5198,7 @@ static void direct_link_modifiers(FileData *fd, ListBase *lb)
smd->coll = NULL;
smd->flow = newdataadr(fd, smd->flow);
smd->flow->smd = smd;
- smd->flow->dm = NULL;
+ smd->flow->mesh = NULL;
smd->flow->verts_old = NULL;
smd->flow->numverts = 0;
smd->flow->psys = newdataadr(fd, smd->flow->psys);
@@ -5211,7 +5211,7 @@ static void direct_link_modifiers(FileData *fd, ListBase *lb)
smd->coll->smd = smd;
smd->coll->verts_old = NULL;
smd->coll->numverts = 0;
- smd->coll->dm = NULL;
+ smd->coll->mesh = NULL;
}
else {
smd->type = 0;