From ac163447f86f95ec6136991d7df3aaaefdd55fae Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 30 Apr 2016 04:04:18 +1000 Subject: Cleanup: warnings. spelling --- source/blender/editors/physics/particle_edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/physics/particle_edit.c') diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c index d20688693e1..b8ff2721717 100644 --- a/source/blender/editors/physics/particle_edit.c +++ b/source/blender/editors/physics/particle_edit.c @@ -102,7 +102,7 @@ void update_world_cos(Object *ob, PTCacheEdit *edit); #define LOOP_SELECTED_KEYS for (k=0, key=point->keys; ktotkey; k++, key++) if ((key->flag & PEK_SELECT) && !(key->flag & PEK_HIDE)) #define LOOP_TAGGED_KEYS for (k=0, key=point->keys; ktotkey; k++, key++) if (key->flag & PEK_TAG) -#define KEY_WCO (key->flag & PEK_USE_WCO ? key->world_co : key->co) +#define KEY_WCO ((key->flag & PEK_USE_WCO) ? key->world_co : key->co) /**************************** utilities *******************************/ -- cgit v1.2.3