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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-02-11 17:24:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-11 17:24:45 +0300
commit3c5b476d1f2e52cabf93a3ce658cf42b269a3968 (patch)
treee04ca679d9959054322b017572eaa3fd61f79ded /source
parent8f4c340915fbfc65f9380b9a8561ed877c7dab87 (diff)
fix for own mistake [#21088] comb mode broken?
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/physics/particle_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c
index f4486353e47..4c88fb49626 100644
--- a/source/blender/editors/physics/particle_edit.c
+++ b/source/blender/editors/physics/particle_edit.c
@@ -205,7 +205,7 @@ static PTCacheEdit *pe_get_current(Scene *scene, Object *ob, int create)
ListBase pidlist;
PTCacheID *pid;
- if(pset==NULL || pset->object==NULL)
+ if(pset==NULL || ob==NULL)
return NULL;
pset->scene = scene;