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:
authorMartin Poirier <theeth@yahoo.com>2003-10-29 03:06:59 +0300
committerMartin Poirier <theeth@yahoo.com>2003-10-29 03:06:59 +0300
commit29f532588a23e7bb54d4414b0488b62cdf63062d (patch)
tree7c5ae56ce53b0ae77f1c226439f7a9a78669b083 /source/blender/blenkernel/intern/anim.c
parentfad1324e5aa48bc953956d1f4c4f82bb867d0bb4 (diff)
fixed the last bug with FollowPath (it didn't work with path without a speed IPO).
Diffstat (limited to 'source/blender/blenkernel/intern/anim.c')
-rw-r--r--source/blender/blenkernel/intern/anim.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/anim.c b/source/blender/blenkernel/intern/anim.c
index 4fc5573bd51..a147aaf398f 100644
--- a/source/blender/blenkernel/intern/anim.c
+++ b/source/blender/blenkernel/intern/anim.c
@@ -212,7 +212,6 @@ int where_on_path(Object *ob, float ctime, float *vec, float *dir) /* returns OK
float *fp, *p0, *p1, *p2, *p3, fac;
float data[4];
int cycl=0, s0, s1, s2, s3;
-
if(ob==0 || ob->type != OB_CURVE) return 0;
cu= ob->data;