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>2019-02-27 03:14:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-27 03:14:41 +0300
commit918941483f7ec5fc6320d345c755e953b963c710 (patch)
tree5c855723ca55eff5a412076a95246c183a97f5b8 /source/blender/blenloader/intern/versioning_250.c
parent3051e2f4ae8fd3e72a43dd1e5d40893d0efec500 (diff)
Cleanup: Main struct member names
Rename latt to lattice and don't use plural names.
Diffstat (limited to 'source/blender/blenloader/intern/versioning_250.c')
-rw-r--r--source/blender/blenloader/intern/versioning_250.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_250.c b/source/blender/blenloader/intern/versioning_250.c
index d0e7e612225..6b75203cd31 100644
--- a/source/blender/blenloader/intern/versioning_250.c
+++ b/source/blender/blenloader/intern/versioning_250.c
@@ -957,7 +957,7 @@ void blo_do_versions_250(FileData *fd, Library *lib, Main *bmain)
}
}
- for (lt = bmain->latt.first; lt; lt = lt->id.next) {
+ for (lt = bmain->lattice.first; lt; lt = lt->id.next) {
if ((key = blo_do_versions_newlibadr(fd, lib, lt->key)) && key->refkey) {
data = key->refkey->data;
tot = MIN2(lt->pntsu * lt->pntsv * lt->pntsw, key->refkey->totelem);