From 4381fa3157f29167adc60921e67c8557971b487d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20T=C3=B6nne?= Date: Mon, 19 Jan 2015 19:14:25 +0100 Subject: [PATCH] Minor fix for lost variable declaration during cherry-picking. --- source/blender/physics/intern/BPH_mass_spring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/physics/intern/BPH_mass_spring.cpp b/source/blender/physics/intern/BPH_mass_spring.cpp index 7df58e0ff33..153993dc9b8 100644 --- a/source/blender/physics/intern/BPH_mass_spring.cpp +++ b/source/blender/physics/intern/BPH_mass_spring.cpp @@ -116,7 +116,6 @@ void BKE_cloth_solver_set_positions(ClothModifierData *clmd) unsigned int numverts = cloth->numverts, i; ClothHairRoot *cloth_roots = clmd->roots; Implicit_Data *id = cloth->implicit; - const float ZERO[3] = {0.0f, 0.0f, 0.0f}; for (i = 0; i < numverts; i++) { ClothHairRoot *root = &cloth_roots[i]; @@ -512,6 +511,7 @@ static void cloth_calc_force(ClothModifierData *clmd, float UNUSED(frame), ListB float gravity[3] = {0.0f, 0.0f, 0.0f}; MFace *mfaces = cloth->mfaces; unsigned int numverts = cloth->numverts; + ClothVertex *vert; #ifdef CLOTH_FORCE_GRAVITY /* global acceleration (gravitation) */