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:
authorJason Wilkins <Jason.A.Wilkins@gmail.com>2010-07-23 03:06:09 +0400
committerJason Wilkins <Jason.A.Wilkins@gmail.com>2010-07-23 03:06:09 +0400
commit43d5357a2e0dc2be209bdcbdf63246002dda4a7f (patch)
tree4ca4f11adff2ef287bd72c2ec6c64fa1d8dbff47 /source/blender/blenloader
parent5b4a3b56d2dd1968b062f3dc17535e535fd86bad (diff)
* Fix [#22970] 2.5B 30369M crash opening 2.5A2 eye.blend
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 87034717a93..3514eb91dd5 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -11053,7 +11053,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
/* GSOC Sculpt 2010 - Sanity check on Sculpt/Paint settings */
if (main->versionfile < 253) {
Scene *sce;
- for (sce= main->brush.first; sce; sce= sce->id.next) {
+ for (sce= main->scene.first; sce; sce= sce->id.next) {
if (sce->toolsettings->sculpt_paint_unified_alpha == 0)
sce->toolsettings->sculpt_paint_unified_alpha = 0.5f;