Fix bad enum value since 299ff7dcd1

This is why out-sourcing things to a production-tested formatters
is a very very good idea.
This commit is contained in:
2019-01-07 17:18:33 +01:00
parent 8e35a968c5
commit b2a0ffc95f

View File

@@ -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;