From 987bb50a74132e1f2489083c59daab892f24806f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20T=C3=B6nne?= Date: Wed, 13 Apr 2016 18:10:23 +0200 Subject: Removed remaining use of pointers to particle types as well as boids headers. --- source/blender/blenkernel/intern/pointcache.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source/blender/blenkernel/intern/pointcache.c') diff --git a/source/blender/blenkernel/intern/pointcache.c b/source/blender/blenkernel/intern/pointcache.c index d605232f97d..a3529d8e6f2 100644 --- a/source/blender/blenkernel/intern/pointcache.c +++ b/source/blender/blenkernel/intern/pointcache.c @@ -130,7 +130,7 @@ static int ptcache_data_size[] = { 3 * sizeof(float), // BPHYS_DATA_AVELOCITY / BPHYS_DATA_XCONST sizeof(float), // BPHYS_DATA_SIZE 3 * sizeof(float), // BPHYS_DATA_TIMES - sizeof(BoidData) // case BPHYS_DATA_BOIDS + 0 // case BPHYS_DATA_BOIDS }; static int ptcache_extra_datasize[] = { @@ -1825,7 +1825,6 @@ static void ptcache_file_pointers_init(PTCacheFile *pf) pf->cur[BPHYS_DATA_AVELOCITY] = (data_types & (1<data.ave : NULL; pf->cur[BPHYS_DATA_SIZE] = (data_types & (1<data.size : NULL; pf->cur[BPHYS_DATA_TIMES] = (data_types & (1<data.times : NULL; - pf->cur[BPHYS_DATA_BOIDS] = (data_types & (1<data.boids : NULL; } /* Check to see if point number "index" is in pm, uses binary search for index data. */ -- cgit v1.2.3