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:
authorStephen Swaney <sswaney@centurytel.net>2008-05-26 19:12:20 +0400
committerStephen Swaney <sswaney@centurytel.net>2008-05-26 19:12:20 +0400
commita2298cb980cc9f5294375cf9b14d68054d5e4ad5 (patch)
treec40c23bd2349bdf758f493f50a9b6a102e808c3a
parentae2a0bb2739ee0f45e882789aaa26bdc8cabc0a9 (diff)
bugfix for crasher from Cedric Paille via bf-committers.
-rw-r--r--source/blender/python/api2_2x/Particle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Particle.c b/source/blender/python/api2_2x/Particle.c
index 15307cc2be5..f0a32db0623 100644
--- a/source/blender/python/api2_2x/Particle.c
+++ b/source/blender/python/api2_2x/Particle.c
@@ -828,7 +828,7 @@ static PyObject *Part_GetLoc( BPy_PartSys * self, PyObject * args ){
/* little hack to calculate hair steps in render mode */
psys->renderdata = (void*)(int)1;
- psys_cache_paths(ob, psys, cfra, 0);
+ psys_cache_paths(ob, psys, cfra, 1);
psys->renderdata = NULL;