From 1786923afc85ede081dc3ed1a3970965a61dd761 Mon Sep 17 00:00:00 2001 From: Janne Karhu Date: Sun, 9 Jan 2011 18:23:41 +0000 Subject: Replace uint32_t in pointcache code with unsigned int as it's supported in dna * Not strictly necessary right now, but better for future. * Struct data (only boids at the moment) is now written as structs (with dna) so they work between 64 and 32 bit machines too. --- source/blender/makesdna/DNA_object_force.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesdna/DNA_object_force.h') diff --git a/source/blender/makesdna/DNA_object_force.h b/source/blender/makesdna/DNA_object_force.h index 1d1ad6ad021..a6898279a1d 100644 --- a/source/blender/makesdna/DNA_object_force.h +++ b/source/blender/makesdna/DNA_object_force.h @@ -150,7 +150,7 @@ typedef struct PTCacheExtra { typedef struct PTCacheMem { struct PTCacheMem *next, *prev; - int frame, totpoint; + unsigned int frame, totpoint; unsigned int data_types, flag; void *data[8]; /* BPHYS_TOT_DATA */ -- cgit v1.2.3