[Bf-blender-cvs] [b2a0ffc95f4] master: Fix bad enum value since 299ff7dcd13

Sergey Sharybin noreply at git.blender.org
Mon Jan 7 17:24:26 CET 2019


Commit: b2a0ffc95f4ce0a93754b47b0e315a912a91469d
Author: Sergey Sharybin
Date:   Mon Jan 7 17:18:33 2019 +0100
Branches: master
https://developer.blender.org/rBb2a0ffc95f4ce0a93754b47b0e315a912a91469d

Fix bad enum value since 299ff7dcd13

This is why out-sourcing things to a production-tested formatters
is a very very good idea.

===================================================================

M	source/blender/makesdna/DNA_object_force_types.h

===================================================================

diff --git a/source/blender/makesdna/DNA_object_force_types.h b/source/blender/makesdna/DNA_object_force_types.h
index ef62d60dd45..e4496d3e7c4 100644
--- a/source/blender/makesdna/DNA_object_force_types.h
+++ b/source/blender/makesdna/DNA_object_force_types.h
@@ -55,7 +55,7 @@ typedef enum ePFieldType {
 	PFIELD_BOID       = 10,	/* Defines predator / goal for boids									*/
 	PFIELD_TURBULENCE = 11,	/* Force defined by BLI_gTurbulence										*/
 	PFIELD_DRAG       = 12,	/* Linear & quadratic drag												*/
-	PFIELD_SMOKEFLOW  = 1301,	/* Force based on smoke simulation air flow								*/
+	PFIELD_SMOKEFLOW  = 13,	/* Force based on smoke simulation air flow								*/
 	NUM_PFIELD_TYPES
 } ePFieldType;



More information about the Bf-blender-cvs mailing list