Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-12-07 19:30:19 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-12-07 19:30:47 +0300
commite9634b6930e4712260d69a2c4e350783144a371a (patch)
tree690d9e3a7805036f0c1097c488c5afb840af1a37 /source/blender/makesdna/DNA_ID.h
parente2d9166473184c4794dc6bdbf91aa2b6ac2a16ec (diff)
Cleanup, typo in naming
\Something went wrong in the rename script..
Diffstat (limited to 'source/blender/makesdna/DNA_ID.h')
-rw-r--r--source/blender/makesdna/DNA_ID.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index bf2a6a727d3..9888b01a367 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -522,7 +522,7 @@ typedef enum IDRecalcFlag {
/* Particle system changed; values are aligned with ID_RECALC_PSYS_xxx. */
ID_RECALC_PSYS_REDO = (1 << 3), /* Only do pathcache etc */
ID_RECALC_PSYS_RESET = (1 << 4), /* Reset everything including pointcache. */
- ID_RECALC_PSYS_YPE = (1 << 5), /* Handle system type change. */
+ ID_RECALC_PSYS_TYPE = (1 << 5), /* Handle system type change. */
ID_RECALC_PSYS_CHILD = (1 << 6), /* Only child settings changed. */
ID_RECALC_PSYS_PHYS = (1 << 7), /* Physics type changed. */
/* Update copy on write component without flushing down the road. */
@@ -552,7 +552,7 @@ typedef enum IDRecalcFlag {
/* Identifies that something in particle system did change. */
ID_RECALC_PSYS_ALL = (ID_RECALC_PSYS_REDO |
ID_RECALC_PSYS_RESET |
- ID_RECALC_PSYS_YPE |
+ ID_RECALC_PSYS_TYPE |
ID_RECALC_PSYS_CHILD |
ID_RECALC_PSYS_PHYS),