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:
authorMatt Ebb <matt@mke3.net>2008-10-22 10:10:16 +0400
committerMatt Ebb <matt@mke3.net>2008-10-22 10:10:16 +0400
commitc62c61a413f90f0af387027f9f94782904c40f17 (patch)
tree0f798b775e5c2680c871b629ca18e390cc94c6dd /source/blender
parent876368d859593c8ad152f94ea06214bacf516b0d (diff)
* Fixed a bug in copying (making single user) a point density texture
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenkernel/intern/texture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/texture.c b/source/blender/blenkernel/intern/texture.c
index 6f58e054f69..0dbc0228820 100644
--- a/source/blender/blenkernel/intern/texture.c
+++ b/source/blender/blenkernel/intern/texture.c
@@ -895,7 +895,7 @@ PointDensity *BKE_copy_pointdensity(PointDensity *pd)
pdn->point_tree = NULL;
pdn->point_data = NULL;
- return pd;
+ return pdn;
}
void BKE_free_pointdensitydata(PointDensity *pd)