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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-09-17 00:33:46 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-09-17 00:33:46 +0400
commit7d0e17922a817d940121d8eaf9f0812ece98b16e (patch)
tree4e536f08d077b351bd296c8446bae0130aa6587b /source/blender/blenkernel/intern/boids.c
parenta0e1e9d1e14991115310474b3597bd5b12887071 (diff)
Fix compile error after last commit in boids.
Diffstat (limited to 'source/blender/blenkernel/intern/boids.c')
-rw-r--r--source/blender/blenkernel/intern/boids.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/boids.c b/source/blender/blenkernel/intern/boids.c
index e408f73e6c8..69a42e52247 100644
--- a/source/blender/blenkernel/intern/boids.c
+++ b/source/blender/blenkernel/intern/boids.c
@@ -792,7 +792,7 @@ static Object *boid_find_ground(BoidBrainData *bbd, ParticleData *pa, float *gro
}
/* couldn't find below, so find upmost deflector object */
- add_v3_v3(col.co1, pa->state.co, zvec);
+ add_v3_v3v3(col.co1, pa->state.co, zvec);
sub_v3_v3v3(col.co2, pa->state.co, zvec);
sub_v3_v3(col.co2, zvec);
sub_v3_v3v3(ray_dir, col.co2, col.co1);