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>2020-06-05 17:05:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-05 17:12:28 +0300
commit0f64de6b9b7dc3e4c4af30f68afeb3e42f385042 (patch)
treef0f4c209995661a72a2379d2f6085d8559daa648 /source/blender/blenloader/intern
parente9659d0e6e22d55ba85ed24412fb866293b20c5a (diff)
Cleanup: compiler warning
Diffstat (limited to 'source/blender/blenloader/intern')
-rw-r--r--source/blender/blenloader/intern/writefile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c
index 80c64ded06a..5e78f0c1052 100644
--- a/source/blender/blenloader/intern/writefile.c
+++ b/source/blender/blenloader/intern/writefile.c
@@ -2176,7 +2176,7 @@ static void write_mdisps(BlendWriter *writer, int count, MDisps *mdlist, int ext
MDisps *md = &mdlist[i];
if (md->disps) {
if (!external) {
- BLO_write_float3_array(writer, md->totdisp, md->disps);
+ BLO_write_float3_array(writer, md->totdisp, &md->disps[0][0]);
}
}