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:
authorLukas Tönne <lukas.toenne@gmail.com>2015-01-19 17:09:44 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-01-20 11:30:33 +0300
commitc8912073e62d503f9caa645963a282228c3af4f2 (patch)
treeaab2be5ba2ef10b7ae65af372cb906d86cad2d73 /source/blender/blenloader
parent8ac20d1dee6f0a7f9781a0b1270db5104fce2064 (diff)
Fix for incorrect DNA field name in versioning, causes constant
resetting of clump noise size on reload. Conflicts: source/blender/blenloader/intern/versioning_270.c
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/versioning_270.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_270.c b/source/blender/blenloader/intern/versioning_270.c
index 29068d21ab3..c652f56bd93 100644
--- a/source/blender/blenloader/intern/versioning_270.c
+++ b/source/blender/blenloader/intern/versioning_270.c
@@ -492,7 +492,7 @@ void blo_do_versions_270(FileData *fd, Library *UNUSED(lib), Main *main)
}
}
- if (!DNA_struct_elem_find(fd->filesdna, "ParticleSettings", "float", "clumpnoisesize")) {
+ if (!DNA_struct_elem_find(fd->filesdna, "ParticleSettings", "float", "clump_noise_size")) {
ParticleSettings *part;
for (part = main->particle.first; part; part = part->id.next) {
part->clump_noise_size = 1.0f;